X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FAR.pm;h=42f8c1cc7413c64df3dd8375456a45437a0520bf;hb=86be28e9b1744d86e2db534c3d2b005eb5f144f5;hp=e3e363191f7a7eb7e7881ee585f8af56f8e01f09;hpb=8e53eafd1ab02a8d310691c245279c732031df3b;p=kivitendo-erp.git diff --git a/SL/AR.pm b/SL/AR.pm index e3e363191..42f8c1cc7 100644 --- a/SL/AR.pm +++ b/SL/AR.pm @@ -83,7 +83,9 @@ sub post_transaction { $form->{amount} = $form->{netamount}; - $form->{tax} = 0; + $form->{tax} = 0; + $form->{netamount} = 0; + $form->{total_tax} = 0; # taxincluded doesn't make sense if there is no amount @@ -115,6 +117,7 @@ sub post_transaction { $form->{"tax_$i"} = $form->{"amount_$i"} * $form->{"taxrate_$i"}; $form->{"tax_$i"} = $form->round_amount($form->{"tax_$i"} * $form->{exchangerate}, 2); + $form->{netamount} += $form->{"amount_$i"}; } } $form->{total_tax} += $form->{"tax_$i"};