From 0eeb655492b289de27e3602afd6b5333e44b0271 Mon Sep 17 00:00:00 2001 From: zhaoyun Date: Fri, 19 Jun 2026 05:17:30 +0800 Subject: [PATCH] =?UTF-8?q?fix(#785):=20zhaoyun=20(=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E5=90=88=E5=85=A5)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/EncounterLocationServiceImpl.java | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/healthlink-his-server/healthlink-his-domain/src/main/java/com/healthlink/his/administration/service/impl/EncounterLocationServiceImpl.java b/healthlink-his-server/healthlink-his-domain/src/main/java/com/healthlink/his/administration/service/impl/EncounterLocationServiceImpl.java index b8b380af2..8e88c2afa 100755 --- a/healthlink-his-server/healthlink-his-domain/src/main/java/com/healthlink/his/administration/service/impl/EncounterLocationServiceImpl.java +++ b/healthlink-his-server/healthlink-his-domain/src/main/java/com/healthlink/his/administration/service/impl/EncounterLocationServiceImpl.java @@ -45,8 +45,7 @@ public class EncounterLocationServiceImpl extends ServiceImpl queryWrapper = new LambdaQueryWrapper<>(); queryWrapper.eq(EncounterLocation::getEncounterId, encounterLocation.getEncounterId()) - .eq(EncounterLocation::getFormEnum, encounterLocation.getFormEnum()) - // 状态为使用中 + .eq(EncounterLocation::getFormEnum, encounterLocation.getFormEnum()); // 查询是否存在记录 EncounterLocation existingRecord = baseMapper.selectOne(queryWrapper); @@ -168,9 +167,7 @@ public class EncounterLocationServiceImpl extends ServiceImpl