Explorar el Código

Merge branch 'dev'

master
Guillaume hace 3 años
padre
commit
8da58d9f3a
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. +4
    -1
      common/models/Document.php

+ 4
- 1
common/models/Document.php Ver fichero

@@ -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;
}

Cargando…
Cancelar
Guardar