Commit 9e665e7faef88468bc69de7aaff1639dd575e0b4

Authored by liquanyu
1 parent 5f1bedac60

区域产妇查询重复问题

Showing 1 changed file with 7 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientFacade.java View file @ 9e665e7
... ... @@ -507,9 +507,15 @@
507 507 hospitalList.remove("2100002324");//衡水六院登陆
508 508 hospitalList.add("5100002324");//查询一个空的
509 509 }
  510 + if (com.lyms.platform.common.utils.StringUtils.isNotEmpty(riskPatientsQueryRequest.getFmHospital())) {
  511 + patientsQuery.setHospitalList(Arrays.asList(riskPatientsQueryRequest.getFmHospital()));
  512 + }
  513 + else
  514 + {
  515 + patientsQuery.setHospitalList(hospitalList);
  516 + }
510 517  
511 518  
512   - patientsQuery.setHospitalList(hospitalList);
513 519  
514 520 fmHospitalList.addAll(hospitalList);
515 521