Browse Source

Allow tab to items list

master
olwen 25 years ago
parent
commit
71f3981c5c
  1. 16
      C4/Interface/AccountsCDK.pm

16
C4/Interface/AccountsCDK.pm

@ -69,6 +69,7 @@ sub accountsdialog {
'Max'=>"10",'Width'=>"10",
'Xpos'=>"1",'Ypos'=>"4",
'Type'=>"INT");
$amountentry->preProcess ('Function' => sub{preamt(@_,$env,$acctlist);});
#$amountentry->set('Value'=>$amountowing);
my $amount =$amountentry->activate();
#debug_msg($env,"accounts $amount");
@ -80,5 +81,20 @@ sub accountsdialog {
return($amount,$reason);
}
sub preamt {
my ($input,$env,$acctlist)= @_;
my $key_tab = chr(9);
if ($input eq $key_tab) {
actlist ($env,$acctlist);
return 0;
}
return 1;
}
sub actlist {
my ($env,$acctlist) = @_;
$acctlist->activate();
}
END { } # module clean-up code here (global destructor)

Loading…
Cancel
Save