Commit 603cb535d8b982b939c2615f12a69bbcca83084e
1 parent
95c8917557
Exists in
master
and in
7 other branches
分娩作废产检劵
Showing 1 changed file with 2 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AntExRecordFacade.java
View file @
603cb53
| ... | ... | @@ -461,11 +461,11 @@ |
| 461 | 461 | BaseListResponse listRep = (BaseListResponse) findList(antExManagerQueryRequest, id, b, null); |
| 462 | 462 | List<Map<String, Object>> datas = new ArrayList<>(); |
| 463 | 463 | try { |
| 464 | - Map<String, Object> data = new HashMap<>(); | |
| 465 | 464 | if (listRep != null) { |
| 466 | 465 | List<AntExManagerResult> list = listRep.getData(); |
| 467 | 466 | if (CollectionUtils.isNotEmpty(list)) { |
| 468 | 467 | for (AntExManagerResult aer : list) { |
| 468 | + Map<String, Object> data = new HashMap<>(); | |
| 469 | 469 | data.put("checkTime", aer.getCheckTime()); |
| 470 | 470 | data.put("barCode", aer.getBarCode()); |
| 471 | 471 | data.put("name", aer.getName()); |
| ... | ... | @@ -481,6 +481,7 @@ |
| 481 | 481 | data.put("checkDoctor", aer.getCheckDoctor()); |
| 482 | 482 | data.put("lName", aer.getlName()); |
| 483 | 483 | data.put("phone", aer.getPhone()); |
| 484 | + datas.add(data); | |
| 484 | 485 | } |
| 485 | 486 | } |
| 486 | 487 |