fix(StoreProductLogic): 修复了商品价格更新时的错误 store_id 条件

This commit is contained in:
mkm 2024-09-06 14:05:33 +08:00
parent 816521c6be
commit 2cbe0fc8a3

View File

@ -221,7 +221,7 @@ class StoreProductLogic extends BaseLogic
// $dealCate = self::dealChangeCate($params['cate_id']);
//修改
StoreBranchProduct::where('product_id', $params['id'])->update([
StoreBranchProduct::where('product_id', $params['id'])->whereNotIn('store_id',[17,18])->update([
'price' => $params['price'],
'vip_price' => $params['vip_price'],
'cost' => $params['cost'],