From 20d1b6b5d9955faeed1689d656e1f6bab0097d1e Mon Sep 17 00:00:00 2001 From: eight <641137800@qq.com> Date: 星期四, 10 十月 2024 15:08:30 +0800 Subject: [PATCH] 根据检查类型 安排医生工位 step 1 --- jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/queue/BedDoctorNextPatientCallable.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/queue/BedDoctorNextPatientCallable.java b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/queue/BedDoctorNextPatientCallable.java index ab983a4..18db62b 100644 --- a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/queue/BedDoctorNextPatientCallable.java +++ b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/service/queue/BedDoctorNextPatientCallable.java @@ -22,7 +22,7 @@ public ErrorCode call() throws Exception { ErrorCode ec = queueService.nextPatient(roomId, bedNo); if (GlobalErrorCodeConstants.SUCCESS.equals(ec)) { - queueService.hurryup(); + queueService.hurryupOneBed(roomId, bedNo); } queueService.monitorInfo(); -- Gitblit v1.9.3