Revision 76466336
Von Waldemar Toews vor fast 8 Jahren hinzugefügt
bin/mozilla/io.pl | ||
---|---|---|
493 | 493 |
HEADER => \@HEADER, |
494 | 494 |
}); |
495 | 495 |
|
496 |
if (0 != ($form->{sellprice_total} * 1)) {
|
|
496 |
if (abs($form->{sellprice_total} * 1) >= 0.01) {
|
|
497 | 497 |
$form->{marge_percent} = ($form->{sellprice_total} - $form->{lastcost_total}) / $form->{sellprice_total} * 100; |
498 | 498 |
} |
499 | 499 |
|
Auch abrufbar als: Unified diff
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.