diff options
Diffstat (limited to 'LedgerSMB/IR.pm')
-rwxr-xr-x | LedgerSMB/IR.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/LedgerSMB/IR.pm b/LedgerSMB/IR.pm index 8c79ee64..0f97bba6 100755 --- a/LedgerSMB/IR.pm +++ b/LedgerSMB/IR.pm @@ -35,6 +35,7 @@ package IR; use LedgerSMB::Tax; use LedgerSMB::PriceMatrix; use LedgerSMB::Sysconfig; +use Math::BigFloat; sub post_invoice { @@ -227,7 +228,7 @@ sub post_invoice { \@taxaccounts, $form, $linetotal, 1); $form->{"sellprice_$i"} - -= $amount / $form{"qty_$i"}; + -= $amount / $form->{"qty_$i"}; } else { $tax += $amount = Tax::calculate_taxes( \@taxaccounts, $form, $linetotal, 0); |