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']); });