diff options
Diffstat (limited to 'LedgerSMB/OE.pm')
-rwxr-xr-x | LedgerSMB/OE.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LedgerSMB/OE.pm b/LedgerSMB/OE.pm index 2a29c5d0..a4964148 100755 --- a/LedgerSMB/OE.pm +++ b/LedgerSMB/OE.pm @@ -1317,7 +1317,7 @@ sub order_details { $taxamount = Tax::calculate_taxes( \@taxaccounts, $form, $linetotal, 1 ); $taxbase = Tax::extract_taxes( \@taxaccounts, $form, $linetotal ); - foreach $item (@taxaccounts) { + foreach my $item (@taxaccounts) { push @taxrates, Math::BigFloat->new(100) * $item->rate; if ( $form->{taxincluded} ) { $taxaccounts{ $item->account } += $item->value; |