From 4e76ddc17ab7eba457211cbe3ff5045a08538095 Mon Sep 17 00:00:00 2001 From: Philip Reetz Date: Thu, 17 Nov 2005 10:06:32 +0000 Subject: [PATCH] Steuerbetraege wurden beim Drucken ohne Nachkommstelle angezeigt --- SL/IS.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); -- 2.20.1