From: Moritz Bunkus Date: Thu, 15 Feb 2007 13:37:05 +0000 (+0000) Subject: Vermeidung von "durch 0 Teilen" anstatt von "wenn's passiert, dann laut pfeifen und... X-Git-Tag: release-2.4.2~100 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=30531673553bc83a944806586bd4226cd6ec336c;p=kivitendo-erp.git Vermeidung von "durch 0 Teilen" anstatt von "wenn's passiert, dann laut pfeifen und so tun, als wär nichts geschehen". --- diff --git a/bin/mozilla/rp.pl b/bin/mozilla/rp.pl index 47d6d4b64..fef3355b5 100644 --- a/bin/mozilla/rp.pl +++ b/bin/mozilla/rp.pl @@ -2127,10 +2127,10 @@ sub statement_details { push @{ $form->{duedate} }, $ref->{duedate}; foreach $item (qw(c0 c30 c60 c90)) { - eval { + if ($ref->{exchangerate} * 1) { $ref->{$item} = $form->round_amount($ref->{$item} / $ref->{exchangerate}, 2); - }; + } $form->{"${item}total"} += $ref->{$item}; $form->{total} += $ref->{$item}; push @{ $form->{$item} },