去除注释,注释掉模拟退款

This commit is contained in:
wucongxing8150 2024-05-09 16:14:49 +08:00
parent a263e71340
commit 9c88db6339
2 changed files with 10 additions and 10 deletions

View File

@ -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();
}
/**

View File

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