From: Philip Reetz Date: Thu, 17 Nov 2005 10:06:32 +0000 (+0000) Subject: Steuerbetraege wurden beim Drucken ohne Nachkommstelle angezeigt X-Git-Tag: release-2.4.0^2~452 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=4e76ddc17ab7eba457211cbe3ff5045a08538095;p=kivitendo-erp.git Steuerbetraege wurden beim Drucken ohne Nachkommstelle angezeigt --- diff --git a/SL/IS.pm b/SL/IS.pm index 540c874e5..8664b994e 100644 --- a/SL/IS.pm +++ b/SL/IS.pm @@ -269,7 +269,7 @@ sub invoice_details { $tax += $taxamount = $form->round_amount($taxaccounts{$item}, 2); - push(@{ $form->{tax} }, $form->format_amount($myconfig, $taxamount)); + push(@{ $form->{tax} }, $form->format_amount($myconfig, $taxamount, 2)); push(@{ $form->{taxdescription} }, $form->{"${item}_description"}); push(@{ $form->{taxrate} }, $form->format_amount($myconfig, $form->{"${item}_rate"} * 100));