diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-04-09 22:16:39 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-04-09 22:16:39 +0000 |
commit | cca269c91382d7729b2ea0f66823ef40abbf235c (patch) | |
tree | 7d9560e07f7821eb8d3a17a4518c08be931c6774 | |
parent | e10829e143ce3594cc00a86d71b327ae70278ef4 (diff) |
Correcting sales tax display bug in order entry screen
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@1051 4979c152-3d1c-0410-bac9-87ea11338e46
-rw-r--r-- | Changelog | 4 | ||||
-rwxr-xr-x | bin/oe.pl | 3 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Changelog for 1.2.2 +* Corrected sales tax display bug in order entry screen + + Changelog for LedgerSMB 1.2.1 * Modifed AM.pm to correctly use globals from ledgersmb.conf (Joshua Drake) * Simplified backup functions in AM.pm (Joshua Drake) @@ -608,7 +608,8 @@ sub form_footer { foreach my $item (@taxes) { my $taccno = $item->account; $form->{"${taccno}_total"} = $form->format_amount(\%myconfig, - $item->value, 2); + $form->{"${taccno}_rate"} * $form->{"${taccno}_base"}, 2); + $tax .= qq| <tr> |