Kirin 5 dni temu
rodzic
commit
aef0b408bb
1 zmienionych plików z 0 dodań i 2 usunięć
  1. 0 2
      app/services/order/StoreOrderCreateServices.php

+ 0 - 2
app/services/order/StoreOrderCreateServices.php

@@ -261,8 +261,6 @@ class StoreOrderCreateServices extends BaseServices
             if ($userInfo['max_order_count'] > 0 && $order_count >= $userInfo['max_order_count']) {
                 throw new ValidateException('报单数量已达上限');
             }
-
-            throw new ValidateException('下单金额不低于' . sys_config('min_price'));
         }
         $orderPre = $this->dao->search(['uid' => $uid, 'is_del' => 0, 'is_system_del' => 0])->order('add_time', 'desc')->find();
         if ($orderPre && $orderPre['add_time'] > (time() - (sys_config('order_time', 0) * 60))) {