Revision 165c6039
Von G. Richardson vor mehr als 12 Jahren hinzugefügt
bin/mozilla/vk.pl | ||
---|---|---|
329 | 329 |
# discount was already accounted for in db sellprice |
330 | 330 |
$ar->{sellprice} = $ar->{sellprice} / $ar->{price_factor}; |
331 | 331 |
$ar->{lastcost} = $ar->{lastcost} / $ar->{price_factor}; |
332 |
$ar->{sellprice_total} = $ar->{qty} * $ar->{sellprice};
|
|
332 |
$ar->{sellprice_total} = $ar->{qty} * ( $ar->{fxsellprice} * ( 1 - $ar->{discount} ) ) ;
|
|
333 | 333 |
$ar->{lastcost_total} = $ar->{qty} * $ar->{lastcost}; |
334 | 334 |
# marge_percent wird neu berechnet, da Wert in invoice leer ist (Bug) |
335 | 335 |
$ar->{marge_percent} = $ar->{sellprice_total} ? (($ar->{sellprice_total}-$ar->{lastcost_total}) / $ar->{sellprice_total} * 100) : 0; |
Auch abrufbar als: Unified diff
Verkaufsbericht: genauere Berechnung von sellprice_total (2. Mal)
War schon in Commit e3329d46a4c2ed19172f9c9ed8251af03cbc1905 drin, ist aber bei
Überarbeitung verlogen gegangen.
Gleiche Berechnung wie in Rechnung unter Berücksichtigung von fxsellprice und
discount.
Summe aus Verkaufsbericht sollte mit Summe aus Verkauf->Berichte->Rechnungen
übereinstimmen.