From 148843a1c71cc12a3e8fd0325e19e4939f769638 Mon Sep 17 00:00:00 2001 From: wucongxing <815046773@qq.com> Date: Mon, 3 Apr 2023 13:27:57 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=A4=84=E6=96=B9=E8=AF=A6?= =?UTF-8?q?=E6=83=85=E6=8E=A5=E5=8F=A3=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Services/PatientOrderService.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/Services/PatientOrderService.php b/app/Services/PatientOrderService.php index 5056702..e483237 100644 --- a/app/Services/PatientOrderService.php +++ b/app/Services/PatientOrderService.php @@ -1137,6 +1137,8 @@ class PatientOrderService extends BaseService 'prescription_status', 'prescription_img', 'prescription_pdf', + 'pharmacist_id', + 'doctor_id', ]; $params = array(); $params['order_prescription_id'] = $order_prescription_id; @@ -1169,6 +1171,9 @@ class PatientOrderService extends BaseService } $order_prescription['pharmacist_sign_image'] = addAliyunOssWebsite($user_pharmacist_info['sign_image']); + // 获取处方医院签名 + $order_prescription['hospital_sign_image'] = "https://img.applets.igandanyiyuan.com/basic/file/hospital_signature.png"; + return success($order_prescription->toArray()); }