From 9c88db6339373046ae3f5e79d2471a0e169c5a0d Mon Sep 17 00:00:00 2001 From: wucongxing8150 <815046773@qq.com> Date: Thu, 9 May 2024 16:14:49 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E9=99=A4=E6=B3=A8=E9=87=8A=EF=BC=8C?= =?UTF-8?q?=E6=B3=A8=E9=87=8A=E6=8E=89=E6=A8=A1=E6=8B=9F=E9=80=80=E6=AC=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Command/MoveOrderCommand.php | 18 +++++++++--------- config/routes.php | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/app/Command/MoveOrderCommand.php b/app/Command/MoveOrderCommand.php index 7b8900e..51c89bf 100644 --- a/app/Command/MoveOrderCommand.php +++ b/app/Command/MoveOrderCommand.php @@ -43,31 +43,31 @@ class MoveOrderCommand extends HyperfCommand $this->line("开始"); // 处理问诊订单 -// $this->handleOrderInquiry(); + $this->handleOrderInquiry(); // 处理问诊订单退款 -// $this->handleOrderInquiryRefund(); + $this->handleOrderInquiryRefund(); // 处理问诊订单优惠卷 -// $this->handleOrderInquiryCoupon(); + $this->handleOrderInquiryCoupon(); // 处理药品订单 -// $this->handleOrderProduct(); + $this->handleOrderProduct(); // 处理药品订单退款 -// $this->handleOrderProductRefund(); + $this->handleOrderProductRefund(); // 处理药品订单优惠卷 -// $this->handleOrderProductCoupon(); + $this->handleOrderProductCoupon(); // 处理检测订单 -// $this->handleOrderDetection(); + $this->handleOrderDetection(); // 处理检测订单退款 -// $this->handleOrderDetectionRefund(); + $this->handleOrderDetectionRefund(); // 修正医生提现关联订单表数据 -// $this->handleDoctorWithdrawalOrder(); + $this->handleDoctorWithdrawalOrder(); } /** diff --git a/config/routes.php b/config/routes.php index 7eb22ce..ba59963 100644 --- a/config/routes.php +++ b/config/routes.php @@ -897,7 +897,7 @@ Router::addGroup('/test', function () { // // Router::get('/uninquiry', [TestController::class, 'uninquiry']); // 模拟退款 - Router::post('/refund', [TestController::class, 'refund']); +// Router::post('/refund', [TestController::class, 'refund']); });