Explorar el Código

Merge branch 'dev'

master
Guillaume hace 4 años
padre
commit
8919f3f85d
Se han modificado 1 ficheros con 4 adiciones y 2 borrados
  1. +4
    -2
      common/models/Distribution.php

+ 4
- 2
common/models/Distribution.php Ver fichero

@@ -329,8 +329,10 @@ class Distribution extends ActiveRecordCommon
if($ordersArray) {
foreach($ordersArray as $order) {
foreach($order->productOrder as $productOrder) {
$productOrder->price = $product->price ;
$productOrder->save() ;
if($order->productOrder->id_product == $product->id) {
$productOrder->price = $product->price ;
$productOrder->save() ;
}
}
}
}

Cargando…
Cancelar
Guardar