|
@@ -200,7 +200,9 @@ public class TaizhouDocTrans extends DocTrans {
|
|
|
inputInfo.getPageData().put("阶段小结", inputInfo.getStagesSummaryDocs().stream().map(i -> i.getPageData()).collect(Collectors.toList()));
|
|
|
}
|
|
|
if (ListUtil.isNotEmpty(inputInfo.getThreeLevelWardDocs())) {
|
|
|
- inputInfo.getPageData().put("查房记录", inputInfo.getThreeLevelWardDocs().get(0).getAllDoctorWradDocs().stream().map(i -> i.getPageData()).collect(Collectors.toList()));
|
|
|
+ List<Map<String, Object>> pageDatas = inputInfo.getThreeLevelWardDocs().get(0).getAllDoctorWradDocs().stream().map(i -> i.getPageData()).collect(Collectors.toList());
|
|
|
+ pageDatas.get(pageDatas.size()-1).put("mode_id","18");
|
|
|
+ inputInfo.getPageData().put("查房记录", pageDatas);
|
|
|
}
|
|
|
if (ListUtil.isNotEmpty(inputInfo.getPathologyShipDocs())) {
|
|
|
inputInfo.getPageData().put("病理检验送检单", inputInfo.getPathologyShipDocs().stream().map(i -> i.getPageData()).collect(Collectors.toList()));
|