From 13719c1fd5b407e72b24d81183f267da6a1b0a7f Mon Sep 17 00:00:00 2001 From: wucongxing8150 <815046773@qq.com> Date: Tue, 30 Apr 2024 14:33:55 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=8F=90=E7=A4=BA=E8=AF=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Services/OrderServicePackageService.php | 4 ++-- app/Services/PatientOrderService.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Services/OrderServicePackageService.php b/app/Services/OrderServicePackageService.php index 5bdff44..24dcf6c 100644 --- a/app/Services/OrderServicePackageService.php +++ b/app/Services/OrderServicePackageService.php @@ -106,7 +106,7 @@ class OrderServicePackageService extends BaseService $order_inquiry = $InquiryService->checkPatientDoctorProgressInquiry($user_info['client_user_id'], $doctor_id); if (!empty($order_inquiry)) { $result['status'] = 4; - $result['message'] = "您和当前医生存在问诊中订单,无法够买服务包"; + $result['message'] = "您和当前医生存在问诊中订单,无法购买服务包"; $result['data']['order_no'] = $order_inquiry['inquiry_no']; $result['data']['order_inquiry_id'] = $order_inquiry['order_inquiry_id']; return success($result); @@ -249,7 +249,7 @@ class OrderServicePackageService extends BaseService $order_inquiry = $InquiryService->checkPatientDoctorProgressInquiry($user_info['client_user_id'], $request_params['doctor_id']); if (!empty($order_inquiry)) { $result['status'] = 4; - $result['message'] = "您和当前医生存在问诊中订单,无法够买服务包"; + $result['message'] = "您和当前医生存在问诊中订单,无法购买服务包"; $result['data']['order_no'] = $order_inquiry['order_inquiry_id']; return success($result); } diff --git a/app/Services/PatientOrderService.php b/app/Services/PatientOrderService.php index 72ef003..2b4fb0f 100644 --- a/app/Services/PatientOrderService.php +++ b/app/Services/PatientOrderService.php @@ -1130,7 +1130,7 @@ class PatientOrderService extends BaseService $InquiryService = new InquiryService(); $order_inquiry = $InquiryService->checkPatientDoctorProgressInquiry($user_info['client_user_id'], $order_service_package['doctor_id']); if (!empty($order_inquiry)) { - $return_result['message'] = "您和当前医生存在问诊中订单,无法够买服务包"; + $return_result['message'] = "您和当前医生存在问诊中订单,无法购买服务包"; $return_result['status'] = 3; $return_result['data'] = $result; $return_result['data']['order_no'] = $order_inquiry['inquiry_no'];