Преглед изворни кода

[backend] Correctif bug factures

refactoring
Guillaume пре 3 година
родитељ
комит
0c0909eccf
1 измењених фајлова са 4 додато и 1 уклоњено
  1. +4
    -1
      common/models/Document.php

+ 4
- 1
common/models/Document.php Прегледај датотеку

@@ -348,7 +348,10 @@ class Document extends ActiveRecordCommon
} else {
$productOrderMatch = false;
foreach ($productsOrdersArray[$productOrder->id_product] as &$theProductOrder) {
if ($theProductOrder->unit == $productOrder->unit && $theProductOrder->price == $productOrder->price) {
if ($theProductOrder->unit == $productOrder->unit
&& ($theProductOrder->price == $productOrder->price
|| ($this->isInvoicePrice()
&& $theProductOrder->invoice_price == $productOrder->invoice_price))) {
$theProductOrder->quantity += $productOrder->quantity;
$productOrderMatch = true;
}

Loading…
Откажи
Сачувај