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())); }