diff options
author | tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-07-12 22:35:56 +0000 |
---|---|---|
committer | tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-07-12 22:35:56 +0000 |
commit | cbb032386383cb28d35c57cc8e2da79f71e6fb17 (patch) | |
tree | ac94aea801e2f6503e27c7d7cc7c18281dd03fc4 | |
parent | c94d01852e47fec1f8580526fd116f5a58a71252 (diff) |
fix for 1751612
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@1392 4979c152-3d1c-0410-bac9-87ea11338e46
-rwxr-xr-x | LedgerSMB/OE.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/LedgerSMB/OE.pm b/LedgerSMB/OE.pm index c87e3640..af81da1c 100755 --- a/LedgerSMB/OE.pm +++ b/LedgerSMB/OE.pm @@ -1301,7 +1301,8 @@ sub order_details { $form->format_amount( $myconfig, $linetotal, 2 ); push( @{ $form->{linetotal} }, $form->{"linetotal_$i"} ); - @taxaccounts = Tax::init_taxes( $form, $form->{"taxaccounts_$i"} ); + @taxaccounts = Tax::init_taxes( $form, $form->{"taxaccounts_$i"}, + $form->{'taxaccounts'} ); my $ml = 1; my @taxrates = (); |