From b1be3e9acc538e368e367cf53ee487193a058f76 Mon Sep 17 00:00:00 2001 From: haomingming Date: Fri, 26 Dec 2025 13:14:41 +0800 Subject: [PATCH] 111 --- app/Services/PatientOrderService.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/Services/PatientOrderService.php b/app/Services/PatientOrderService.php index 5d2189d..424d4b7 100644 --- a/app/Services/PatientOrderService.php +++ b/app/Services/PatientOrderService.php @@ -2015,6 +2015,10 @@ class PatientOrderService extends BaseService $UserDoctor = UserDoctor::getOne($params, $fields); if (!empty($UserDoctor)) { + Log::getInstance("PatientOrderService-getPatientPrescriptionOrderList")->info("成功设置UserDoctor", [ + 'doctor_id' => $UserDoctor['doctor_id'] ?? null, + 'user_name' => $UserDoctor['user_name'] ?? null, + ]); $item['UserDoctor'] = $UserDoctor; } }