diff options
-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> |