Commit 4f618c071feabd524213ede749cc57bc300b22e9

Authored by jesse.wang
1 parent a2d1358691

医院筛选去掉服务站等

Showing 1 changed file with 5 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/OrganizationController.java View file @ 4f618c0
... ... @@ -464,6 +464,11 @@
464 464 if (!(hname.contains("卫生服务站") || hname.contains("卫生服务中心") || hname.contains("卫生院"))) {
465 465 continue;
466 466 }
  467 + } else if (StringUtils.isNotEmpty(isMaternityManagement) && isMaternityManagement.equalsIgnoreCase("3")) {
  468 + String hname = organization.getName();
  469 + if ((hname.contains("卫生服务站") || hname.contains("卫生服务中心") || hname.contains("卫生院"))) {
  470 + continue;
  471 + }
467 472 }
468 473 data.add(organization);
469 474 }