Commit 5b76911c823a16cd2621a9188536c0b8b66dcb3e

Authored by liquanyu
1 parent e3d360bbe5

处方统计

Showing 1 changed file with 0 additions and 4 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AntExRecordFacade.java View file @ 5b76911
... ... @@ -2021,10 +2021,6 @@
2021 2021 for (CheckItem item : checkItems) {
2022 2022 long itemCount = mongoTemplate.count(Query.query(Criteria.where("hospitalId").is(hospitalId).and("type").is(1).and("nextCheckTime")
2023 2023 .gte(DateUtil.getDayFirstSecond(start)).lte(DateUtil.getDayLastSecond(end)).and("itemId").is(String.valueOf(item.getId()))), CheckItemOrder.class);
2024   - if (itemCount == 0)
2025   - {
2026   - continue;
2027   - }
2028 2024 Map<String, String> map = new HashMap<>();
2029 2025 map.put("itemName", item.getProject());
2030 2026 map.put("itemCount", String.valueOf(itemCount));