调整下单前置校验

This commit is contained in:
luofei 2024-01-22 17:27:50 +08:00
parent 1af1b7570b
commit 0c0432f01f

View File

@ -79,7 +79,7 @@ class StoreOrderCreateRepository extends StoreOrderRepository
foreach ($merchantCartList as $merchantCart) {
if (($merchantCart['type_id'] != Merchant::TypeSupplyChain) && $address) {
if ($merchantCart['street_id'] != $address['street_code']) {
if ($merchantCart['street_id'] != $address['street_code'] && $createOrder) {
throw new ValidateException('不支持跨区域购买,请在【我的】-【地址管理】更改后重新购买');
}
}