Quellcode durchsuchen

Merge branch 'dev'

master
Guillaume vor 4 Jahren
Ursprung
Commit
8919f3f85d
1 geänderte Dateien mit 4 neuen und 2 gelöschten Zeilen
  1. +4
    -2
      common/models/Distribution.php

+ 4
- 2
common/models/Distribution.php Datei anzeigen

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

Laden…
Abbrechen
Speichern