From 820cfca5129a5e5160d0fd5af05b8b123da23134 Mon Sep 17 00:00:00 2001 From: qiaoyuewang Date: Fri, 11 Apr 2025 00:20:17 +0800 Subject: [PATCH] =?UTF-8?q?2:=E5=AF=BC=E5=87=BA=E6=95=B0=E6=8D=AE=E6=97=B6?= =?UTF-8?q?=EF=BC=8C=E6=89=8B=E6=9C=BA=E5=8F=B7=E4=B8=8D=E5=8A=A0=E5=AF=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/lyms/platform/operate/web/facade/PatientFacade.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientFacade.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientFacade.java index bc1b64f..629d866 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientFacade.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientFacade.java @@ -2189,7 +2189,7 @@ public class PatientFacade extends BaseServiceImpl { ExceptionUtils.catchException(e, "convertToQuanCPatient get result Future error."); } } - if(CollectionUtils.isNotEmpty(data)){ + if(CollectionUtils.isNotEmpty(data) && !hospital.equals("2100002419")){ for(QuanChanResult result: data){ result.setRealPhone(StringUtils.encryPhone(result.getRealPhone())); } @@ -2217,7 +2217,7 @@ public class PatientFacade extends BaseServiceImpl { ExceptionUtils.catchException(e, "convertToQuanPatient get result Future error."); } } - if(CollectionUtils.isNotEmpty(data)){ + if(CollectionUtils.isNotEmpty(data) && !hospital.equals("2100002419")){ for(QuanPatientsResult result: data){ result.setRealPhone(StringUtils.encryPhone(result.getRealPhone())); } @@ -2472,8 +2472,8 @@ public class PatientFacade extends BaseServiceImpl { ExceptionUtils.catchException(e, "convertToHighRisk get result Future error."); } } - //手机号已经加密,页面显示的是这个字段 南和区人民医院不加密 - if(CollectionUtils.isNotEmpty(data) && !"1000000115".equals(hospital)){ + //手机号已经加密,页面显示的是这个字段 南和区人民医院不加密,大同也不加密 + if(CollectionUtils.isNotEmpty(data) && !"1000000115".equals(hospital) || CollectionUtils.isNotEmpty(data) && !"2100002419".equals(hospital)){ for(RiskPatientsResult result: data){ result.setRealPhone(StringUtils.encryPhone(result.getRealPhone())); } -- 1.8.3.1