调整跨店下单

This commit is contained in:
luofei 2024-01-24 15:54:38 +08:00 committed by mkm
parent 1606fcc62d
commit 60e947ada6

View File

@ -462,9 +462,10 @@ class StoreOtherOrderCreateRepository extends StoreOtherOrderRepository
$orderInfo = $this->v2CartIdByOrderInfo($user, $cartId, $takes, $useCoupon, $useIntegral, $addressId, true);
$order_model = $orderInfo['order_model'];
$order_extend = $orderInfo['order_extend'];
if (!$orderInfo['order_delivery_status']) {
throw new ValidateException('部分商品配送方式不一致,请单独下单');
}
// 以下判断无意义v2CartIdByOrderInfo 已经判断过收货地址或自提地址
// if (!$orderInfo['order_delivery_status']) {
// throw new ValidateException('部分商品配送方式不一致,请单独下单');
// }
if ($orderInfo['order_price'] > 1000000) {
throw new ValidateException('支付金额超出最大限制');
}