From 316b0432d8058d9366248e7b9aa9e44a98360c7f Mon Sep 17 00:00:00 2001 From: "Martin Helmling martin.helmling@octosoft.eu" Date: Thu, 17 Nov 2016 07:50:39 +0100 Subject: [PATCH] =?utf8?q?Mahnungen:=20In=20=C3=9Cbersicht=20zu=20viele=20?= =?utf8?q?Nachkommastellen?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Hier war ein format_amount von -2 . fix #5288 --- bin/mozilla/dn.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/mozilla/dn.pl b/bin/mozilla/dn.pl index 8008f25ca..a56c3a10c 100644 --- a/bin/mozilla/dn.pl +++ b/bin/mozilla/dn.pl @@ -133,7 +133,7 @@ sub show_invoices { if ($row->{next_dunning_config_id}) { map { $_->{SELECTED} = $_->{id} == $row->{next_dunning_config_id} } @{ $row->{DUNNING_CONFIG } }; } - map { $row->{$_} = $form->format_amount(\%myconfig, $row->{$_} * 1, -2) } qw(amount open_amount fee interest); + map { $row->{$_} = $form->format_amount(\%myconfig, $row->{$_} * 1, 2) } qw(amount open_amount fee interest); if ($row->{'language_id'}) { $row->{language} = SL::DB::Manager::Language->find_by_or_create('id' => $row->{'language_id'})->{'description'}; -- 2.20.1