diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-03-25 06:27:10 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-03-25 06:27:10 +0000 |
commit | ce0378ec0d26d8c3d38838960cb8182599f4f09e (patch) | |
tree | e2fe57cf3acf178826321211dab1a4f833a6e06f | |
parent | 96cf16a1bea8681d3a9c549d981198ebfa59cfb8 (diff) |
Fixing partsgroup buttons in POS interface
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@1009 4979c152-3d1c-0410-bac9-87ea11338e46
-rwxr-xr-x | bin/pos.pl | 6 | ||||
-rwxr-xr-x | bin/ps.pl | 6 |
2 files changed, 8 insertions, 4 deletions
@@ -579,8 +579,6 @@ sub form_footer { for (sort { $button{$a}->{ndx} <=> $button{$b}->{ndx} } keys %button) { $form->print_button(\%button, $_) } - print qq|<p> - <input type=text size=1 value="B" accesskey="B" title="[Alt-B]">\n|; if ($form->{partsgroup}) { $form->{partsgroup} =~ s/\r//g; @@ -916,8 +914,8 @@ sub print_and_post { sub lookup_partsgroup { - $form->{action} =~ s/\r//; - $form->{action} = substr($form->{action}, 1); + $form->{my_partsgroup} =~ s/\r//; + $form->{action} = $form->{my_partsgroup}; if ($form->{language_code}) { # get english @@ -60,5 +60,11 @@ if (-f "bin/custom/$form->{login}_pos.pl") { eval { require "bin/custom/$form->{login}_pos.pl"; }; } +# Necessary for Partsgroup lookups +if ($form->{action} =~ s/^\s//){ + $form->{my_partsgroup} = $form->{action}; + $form->{action} = "lookup_partsgroup"; +} + 1; # end |