From 362c3481405359b8671afbe8be6d5218719f21ef Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Thu, 26 Sep 2024 21:29:19 +0800 Subject: [PATCH] =?UTF-8?q?feat(OrderController,=20StoreOrderController):?= =?UTF-8?q?=20=E7=A7=BB=E9=99=A4=E7=B3=BB=E7=BB=9F=E7=BB=B4=E6=8A=A4?= =?UTF-8?q?=E6=9A=82=E5=81=9C=E4=BA=A4=E6=98=93=E6=8F=90=E7=A4=BA=EF=BC=8C?= =?UTF-8?q?=E4=BC=98=E5=8C=96=E8=AE=A2=E5=8D=95API?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/controller/order/OrderController.php | 2 -- app/store/controller/store_order/StoreOrderController.php | 1 - 2 files changed, 3 deletions(-) diff --git a/app/api/controller/order/OrderController.php b/app/api/controller/order/OrderController.php index fdfea135d..3a126f617 100644 --- a/app/api/controller/order/OrderController.php +++ b/app/api/controller/order/OrderController.php @@ -121,8 +121,6 @@ class OrderController extends BaseApiController */ public function createOrder() { - return $this->fail('系统维护中,暂停交易。维护时间2024年9月27日-28日'); - $cartId = (array)$this->request->post('cart_id', []); $store_id =$this->request->post('store_id', 0); $pay_type = (int)$this->request->post('pay_type'); diff --git a/app/store/controller/store_order/StoreOrderController.php b/app/store/controller/store_order/StoreOrderController.php index 228780a16..5d7939187 100644 --- a/app/store/controller/store_order/StoreOrderController.php +++ b/app/store/controller/store_order/StoreOrderController.php @@ -159,7 +159,6 @@ class StoreOrderController extends BaseAdminController */ public function createOrder() { - return $this->fail('系统维护中,暂停交易。维护时间2024年9月27日-28日'); $cartId = (array)$this->request->post('cart_id', []); $pay_type = (int)$this->request->post('pay_type'); $addressId = (int)$this->request->post('address_id');