diff options
author | ivan <ivan> | 2008-04-16 20:34:41 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-04-16 20:34:41 +0000 |
commit | fba0d3390b1d53199777735ea0366b450aa2576b (patch) | |
tree | b84d7706b352db49b6bb674fb47f58fa2820103d /httemplate/edit/part_bill_event.cgi | |
parent | 6eae00a74907ad88924641a9079c59b55102fb5f (diff) |
fix tax class on package def edit
Diffstat (limited to 'httemplate/edit/part_bill_event.cgi')
-rwxr-xr-x | httemplate/edit/part_bill_event.cgi | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/httemplate/edit/part_bill_event.cgi b/httemplate/edit/part_bill_event.cgi index 322ff688e..6dd92c0fc 100755 --- a/httemplate/edit/part_bill_event.cgi +++ b/httemplate/edit/part_bill_event.cgi @@ -25,13 +25,8 @@ Invoice Event #<% $hashref->{eventpart} ? $hashref->{eventpart} : "(NEW)" %> <SELECT NAME="payby" <% $hashref->{eventpart} ? '' : 'MULTIPLE SIZE=7'%>> % tie my %payby, 'Tie::IxHash', FS::payby->cust_payby2longname; % foreach my $payby ( keys %payby ) { -% - - <OPTION VALUE="<% $payby %>"<% ($part_bill_event->payby eq $payby) ? ' SELECTED' : '' %>><% $payby{$payby} %></OPTION> % } - - </SELECT> customers </TD> </TR> @@ -109,11 +104,13 @@ Invoice Event #<% $hashref->{eventpart} ? $hashref->{eventpart} : "(NEW)" %> %if ( $conf->exists('enable_taxclasses') ) { % $late_taxclass = % '<BR>Taxclass '. -% include('/elements/select-taxclass.html', '%%%late_taxclass%%%', +% include('/elements/select-taxclass.html', +% 'curr_value' => '%%%late_taxclass%%%', % 'name' => 'late_taxclass' ); % $late_percent_taxclass = % '<BR>Taxclass '. -% include('/elements/select-taxclass.html', '%%%late_percent_taxclass%%%', +% include('/elements/select-taxclass.html', +% 'curr_value' => '%%%late_percent_taxclass%%%', % 'name' => 'late_percent_taxclass' ); %} % |