X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/9c8d0637fda107ec6d4a35ae52802ee2d1cb9eb3..667cfdce6bf2a06094339fc09fb7d27fc1636d96:/bin/mozilla/dn.pl diff --git a/bin/mozilla/dn.pl b/bin/mozilla/dn.pl index e418fa28f..a56c3a10c 100644 --- a/bin/mozilla/dn.pl +++ b/bin/mozilla/dn.pl @@ -37,7 +37,7 @@ use SL::IS; use SL::PE; use SL::DN; use SL::DB::Dunning; -use SL::Helper::Flash; +use SL::Helper::Flash qw(flash); use SL::Locale::String qw(t8); use SL::ReportGenerator; @@ -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'};