|
@@ -184,7 +184,14 @@ public class TaizhouDocTrans extends DocTrans {
|
|
|
// inputInfo.getPageData().put("值班交接制度", inputInfo.getDutyShiftSystemDocs().stream().map(i -> i.getPageData()).collect(Collectors.toList()));
|
|
|
// }
|
|
|
if (ListUtil.isNotEmpty(inputInfo.getRescueDocs())) {
|
|
|
- inputInfo.getPageData().put("抢救记录", inputInfo.getRescueDocs().stream().map(i -> i.getPageData()).collect(Collectors.toList()));
|
|
|
+ inputInfo.getPageData().put(
|
|
|
+ "抢救记录",
|
|
|
+ inputInfo.getRescueDocs()
|
|
|
+ .stream()
|
|
|
+ .map(i -> i.getPageData())
|
|
|
+ .sorted((map1, map2) -> pageDataTimeSort(map1, map2, "事件日期", "yyyy/MM/dd HH:mm"))
|
|
|
+ .collect(Collectors.toList())
|
|
|
+ );
|
|
|
}
|
|
|
// if (ListUtil.isNotEmpty(inputInfo.getSeriouslyIllNoticeDocs())) {
|
|
|
// inputInfo.getPageData().put("病重通知书", inputInfo.getSeriouslyIllNoticeDocs().stream().map(i -> i.getPageData()).collect(Collectors.toList()));
|