BUG-Fix: Berechnung des prozentualen Ertrags geändert.
authorWaldemar Toews <waldemar.toews@opendynamic.de>
Wed, 22 Jul 2015 11:52:33 +0000 (13:52 +0200)
committerMartin Helmling martin.helmling@octosoft.eu <martin.helmling@octosoft.eu>
Wed, 1 Feb 2017 14:04:44 +0000 (15:04 +0100)
Berechnung des prozentualen Ertrags wird nur beim Verkaufspreis
größer oder gleich 0,01? oder -0,01? durchgeführt.

bin/mozilla/io.pl

index b288291..86813c9 100644 (file)
@@ -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;
   }