X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FAR.pm;h=42f8c1cc7413c64df3dd8375456a45437a0520bf;hb=86be28e9b1744d86e2db534c3d2b005eb5f144f5;hp=aeb6430b049044632cccbe1537b92d7807ee4b8c;hpb=9566fde47ff880d29c7ecce635bd58f330561030;p=kivitendo-erp.git diff --git a/SL/AR.pm b/SL/AR.pm index aeb6430b0..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 @@ -113,7 +115,8 @@ sub post_transaction { $form->{netamount} += $form->{"amount_$i"}; } else { $form->{"tax_$i"} = $form->{"amount_$i"} * $form->{"taxrate_$i"}; - $form->{"tax_$i"} = $form->round_amount($form->{"tax_$i"} * $form->{exchangerate}, 2); + $form->{"tax_$i"} = + $form->round_amount($form->{"tax_$i"} * $form->{exchangerate}, 2); $form->{netamount} += $form->{"amount_$i"}; } }