From: Rolf Fluehmann Date: Thu, 18 May 2017 11:20:55 +0000 (+0200) Subject: Anpassung der CH-Erfolgsrechnung für nicht CH-Ausgabeformate X-Git-Tag: release-3.5.4~1087 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=0e04ddd7e3ff23d051838617844698a39f680969;p=kivitendo-erp.git Anpassung der CH-Erfolgsrechnung für nicht CH-Ausgabeformate --- diff --git a/SL/RP.pm b/SL/RP.pm index ef43307a6..79f0403f2 100644 --- a/SL/RP.pm +++ b/SL/RP.pm @@ -1914,13 +1914,13 @@ sub erfolgsrechnung { foreach my $account (@{$category{accounts}}) { $account->{total} += get_total_ch($account->{id}, $fromdate, $todate); $category{total} += $account->{total}; - $account->{total} = $form->format_amount($myconfig, $form->parse_amount($myconfig, $account->{total}), 2); + $account->{total} = $form->format_amount($myconfig, $form->round_amount($account->{total}, 2), 2); } $form->{total} += $category{total}; - $category{total} = $form->format_amount($myconfig, $form->parse_amount($myconfig, $category{total}), 2); + $category{total} = $form->format_amount($myconfig, $form->round_amount($category{total}, 2), 2); push(@{$form->{categories}}, \%category); } - $form->{total} = $form->format_amount($myconfig, $form->parse_amount($myconfig, $form->{total}), 2); + $form->{total} = $form->format_amount($myconfig, $form->round_amount($form->{total}, 2), 2); $main::lxdebug->leave_sub(); return {};