diff --git a/app/api/logic/order/OrderLogic.php b/app/api/logic/order/OrderLogic.php index faad2b29..8735ba11 100644 --- a/app/api/logic/order/OrderLogic.php +++ b/app/api/logic/order/OrderLogic.php @@ -106,7 +106,7 @@ class OrderLogic extends BaseLogic } else { $find = StoreProduct::where(['id' => $v['product_id']])->field($field)->find(); if (!empty($user['user_ship'])) { - $find = StoreProductGroupPrice::resetProductPrice($find, $user['user_ship']); + $find = StoreProductGroupPrice::resetStoreProductPrice($find, $user['user_ship'], $params['store_id']); } if($find && $find['is_show']==0){ throw new BusinessException('订单存在下架商品请更换后下单');