Merge pull request #11170 from atm-greg/Fix_margin_calculation_on_display
fix useless calculation
This commit is contained in:
commit
e2408fb54d
@ -91,7 +91,7 @@ class FormMargin
|
|||||||
$line->pa_ht = $line->subprice * (1 - ($line->remise_percent / 100));
|
$line->pa_ht = $line->subprice * (1 - ($line->remise_percent / 100));
|
||||||
}
|
}
|
||||||
|
|
||||||
$pv = $line->qty * $line->subprice * (1 - $line->remise_percent / 100);
|
$pv = $line->total_ht;
|
||||||
$pa_ht = ($pv < 0 ? - $line->pa_ht : $line->pa_ht); // We choosed to have line->pa_ht always positive in database, so we guess the correct sign
|
$pa_ht = ($pv < 0 ? - $line->pa_ht : $line->pa_ht); // We choosed to have line->pa_ht always positive in database, so we guess the correct sign
|
||||||
$pa = $line->qty * $pa_ht;
|
$pa = $line->qty * $pa_ht;
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user