From 76466336f47eb3be6b76d1fd17d5b9475c975810 Mon Sep 17 00:00:00 2001 From: Waldemar Toews Date: Wed, 22 Jul 2015 13:52:33 +0200 Subject: [PATCH] =?utf8?q?BUG-Fix:=20Berechnung=20des=20prozentualen=20Ert?= =?utf8?q?rags=20ge=C3=A4ndert.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Berechnung des prozentualen Ertrags wird nur beim Verkaufspreis größer oder gleich 0,01? oder -0,01? durchgeführt. --- bin/mozilla/io.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.20.1