Commit 46f8f010b3b521bf45481a0080a5af22bd5821f4
1 parent
4a14cc89c4
Exists in
master
and in
6 other branches
儿童处方统计
Showing 1 changed file with 1 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyCheckFacade.java
View file @
46f8f01
... | ... | @@ -3314,7 +3314,7 @@ |
3314 | 3314 | String[] arrs = checkTime.split(" - "); |
3315 | 3315 | Date start = DateUtil.parseYMD(arrs[0]); |
3316 | 3316 | Date end = DateUtil.parseYMD(arrs[1]); |
3317 | - long count = mongoTemplate.count(Query.query(Criteria.where("hospitalId").is(hospitalId).and("type").is(2).and("nextCheckTime").gte(DateUtil.getDayFirstSecond(start)).lte(DateUtil.getDayLastSecond(end))), CheckItemOrder.class); | |
3317 | + long count = 0; //mongoTemplate.count(Query.query(Criteria.where("hospitalId").is(hospitalId).and("type").is(2).and("nextCheckTime").gte(DateUtil.getDayFirstSecond(start)).lte(DateUtil.getDayLastSecond(end))), CheckItemOrder.class); | |
3318 | 3318 | data.put("allCount", String.valueOf(count)); |
3319 | 3319 | |
3320 | 3320 | Map param = new HashMap(); |