Commit ded50602de6825e5b5273d208f1a21a4504096ac

Authored by litao@lymsh.com
1 parent 52993349cf

bbbbbb

Showing 1 changed file with 1 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/ReportServiceImpl.java View file @ ded5060
... ... @@ -886,7 +886,7 @@
886 886 List<Map<String, Object>> hospitalInfos = mongoUtil.getHospitals(userId, provinceId, cityId, aredId, streetId);
887 887 List<String> hospitalIds = CollectionUtils.getListByKey(hospitalInfos, "id");
888 888 Criteria c = new Criteria();
889   - c.and("hospitalId").in(hospitalIds).and("yn").ne(0).and("enable").ne("2").and("buildType").ne(1);
  889 + c.and("hospitalId").in(hospitalIds).and("yn").is(1).and("enable").ne("2").and("buildType").ne(1);
890 890 if(startDate != null && endDate != null) {
891 891 c.and("bookbuildingDate").gte(startDate).lt(DateUtil.addDay(endDate, 1));
892 892 }