From ad1342137782b349da71915aa1f78e07a1c3ba3f Mon Sep 17 00:00:00 2001 From: wucongxing <815046773@qq.com> Date: Tue, 25 Apr 2023 15:49:08 +0800 Subject: [PATCH] 1 --- app/Services/PatientOrderService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/PatientOrderService.php b/app/Services/PatientOrderService.php index ea63ecf..b404033 100644 --- a/app/Services/PatientOrderService.php +++ b/app/Services/PatientOrderService.php @@ -324,7 +324,7 @@ class PatientOrderService extends BaseService OrderInquiry::edit($params, $data); // 检测支付状态,判断是否需要退款处理 - if ($order_inquiry['inquiry_pay_status'] == 2 && $order_inquiry['inquiry_refund_status'] != 3 && $order_inquiry['payment_amount_total'] > 0) { + if ($order_inquiry['inquiry_pay_status'] == 2 && $order_inquiry['inquiry_refund_status'] != 3) { // 需退款 $inquiryService = new InquiryService(); $inquiryService->inquiryRefund($order_inquiry['order_inquiry_id'], "取消问诊");