Commit 07a9e33103b134a41c5a87b958d8014fb94aa076
1 parent
75beedc477
Exists in
master
and in
6 other branches
建册统计地址修改
Showing 1 changed file with 3 additions and 3 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/ReportServiceImpl.java
View file @
07a9e33
... | ... | @@ -1128,15 +1128,15 @@ |
1128 | 1128 | .and("hospitalId").is(hospitalId); |
1129 | 1129 | |
1130 | 1130 | if(StringUtils.isNotEmpty(provinceId)) { |
1131 | - criteria.and("provinceId").in(CollectionUtils.asList(provinceId)); | |
1131 | + criteria.and("provinceRegisterId").in(CollectionUtils.asList(provinceId)); | |
1132 | 1132 | } |
1133 | 1133 | |
1134 | 1134 | if(StringUtils.isNotEmpty(cityId)) { |
1135 | - criteria.and("cityId").in(CollectionUtils.asList(cityId)); | |
1135 | + criteria.and("cityRegisterId").in(CollectionUtils.asList(cityId)); | |
1136 | 1136 | } |
1137 | 1137 | |
1138 | 1138 | if(StringUtils.isNotEmpty(areaId)) { |
1139 | - criteria.and("areaId").in(CollectionUtils.asList(areaId)); | |
1139 | + criteria.and("areaRegisterId").in(CollectionUtils.asList(areaId)); | |
1140 | 1140 | } |
1141 | 1141 | |
1142 | 1142 | List<Patients> patients = mongoTemplate.find(Query.query(criteria), Patients.class); |