Commit 136d89762cb60d34ed529fe9482b003544925651
1 parent
7676a6b39e
Exists in
master
and in
6 other branches
改bug
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 @
136d897
| ... | ... | @@ -821,7 +821,7 @@ |
| 821 | 821 | List<Map<String, Object>> datas = (List<Map<String, Object>>) pageResult.getGrid(); |
| 822 | 822 | for (Map<String, Object> map : datas) { |
| 823 | 823 | if(hospitalId.equals(map.get("hospitalId").toString())) { |
| 824 | - List<String> patientIds = (List<String>) map.get("unUsedIds"); | |
| 824 | + HashSet<String> patientIds = (HashSet<String>) map.get("unUsedIds"); | |
| 825 | 825 | List<Map<String, Object>> restList = new ArrayList<>(); |
| 826 | 826 | for (String patientId : patientIds) { |
| 827 | 827 | Patients pt = mongoTemplate.findById(patientId, Patients.class); |