projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b39c8ce
)
Recommit von r993 von udo_spallek: Fixed Bug 327.
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Wed, 22 Nov 2006 15:20:18 +0000
(15:20 +0000)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Wed, 22 Nov 2006 15:20:18 +0000
(15:20 +0000)
SL/AP.pm
patch
|
blob
|
history
diff --git
a/SL/AP.pm
b/SL/AP.pm
index
3d7b840
..
0d13229
100644
(file)
--- a/
SL/AP.pm
+++ b/
SL/AP.pm
@@
-116,12
+116,14
@@
sub post_transaction {
} else {
if (!$form->{"korrektur_$i"}) {
$form->{"tax_$i"} = $form->{"amount_$i"} * $form->{"taxrate_$i"};
+ } else {
+ $tax = $form->{"tax_$i"};
}
$form->{"tax_$i"} =
$form->round_amount($form->{"tax_$i"} * $form->{exchangerate}, 2);
$form->{netamount} += $form->{"amount_$i"};
}
- $form->{total_tax} += $form->{"tax_$i"};
+ $form->{total_tax} += $form->{"tax_$i"}
* -1
;
}
# adjust paidaccounts if there is no date in the last row