Compare commits

..

No commits in common. "a4eb84500a77bbd36270b850987ae887d8fbaaf9" and "0ae06f9bfbea536144f08644353c0c514508420a" have entirely different histories.

View File

@ -48,14 +48,14 @@ class StoreProductPriceLogic extends BaseLogic
'purchase' => $model['purchase'],
'cost' => $model['cost'],
'vip_price' => $model['vip_price'],
'price' => $model['price'],
'price' => $model['vip_price'],
'ot_price' => $model['price']
]);
StoreBranchProduct::where('product_id', $model['product_id'])->update([
'purchase' => $model['purchase'],
'cost' => $model['cost'],
'vip_price' => $model['vip_price'],
'price' => $model['price'],
'price' => $model['vip_price'],
'ot_price' => $model['price']
]);