From: Waldemar Toews Date: Wed, 22 Jul 2015 11:52:33 +0000 (+0200) Subject: BUG-Fix: Berechnung des prozentualen Ertrags geändert. X-Git-Tag: release-3.5.4~1566 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=76466336f47eb3be6b76d1fd17d5b9475c975810;p=kivitendo-erp.git BUG-Fix: Berechnung des prozentualen Ertrags geändert. Berechnung des prozentualen Ertrags wird nur beim Verkaufspreis größer oder gleich 0,01? oder -0,01? durchgeführt. --- diff --git a/bin/mozilla/io.pl b/bin/mozilla/io.pl index b288291a8..86813c941 100644 --- a/bin/mozilla/io.pl +++ b/bin/mozilla/io.pl @@ -493,7 +493,7 @@ sub display_row { HEADER => \@HEADER, }); - if (0 != ($form->{sellprice_total} * 1)) { + if (abs($form->{sellprice_total} * 1) >= 0.01) { $form->{marge_percent} = ($form->{sellprice_total} - $form->{lastcost_total}) / $form->{sellprice_total} * 100; }