修改商品分组价判断

This commit is contained in:
DESKTOP-GMUNQ1B\Administrator 2024-12-06 15:47:53 +08:00
parent a034ae5ec1
commit c91434d54f

View File

@ -102,7 +102,9 @@ class OrderLogic extends BaseLogic
$find = StoreBranchProduct::where(['product_id' => $v['product_id'], 'store_id' => $params['store_id']])->field($field)->find();
} else {
$find = StoreProduct::where(['id' => $v['product_id']])->field($field)->find();
$find = StoreProductGroupPrice::resetProductPrice($find, $user['user_ship']);
if (!empty($user['user_ship'])) {
$find = StoreProductGroupPrice::resetProductPrice($find, $user['user_ship']);
}
}
if (!$find) {
throw new BusinessException('商品不存在');