|
@@ -290,6 +290,28 @@ public class TaizhouDocTrans extends DocTrans {
|
|
inputInfo.getPageData().put("手术安全核查表", oscPageDataList);
|
|
inputInfo.getPageData().put("手术安全核查表", oscPageDataList);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ if (inputInfo.getTransferRecordDocs() != null) {
|
|
|
|
+ if (ListUtil.isNotEmpty(inputInfo.getTransferRecordDocs().getTransferIntoDocs())) {
|
|
|
|
+ inputInfo.getPageData().put(
|
|
|
|
+ "转入记录",
|
|
|
|
+ inputInfo.getTransferRecordDocs().getTransferIntoDocs()
|
|
|
|
+ .stream()
|
|
|
|
+ .filter(i -> i != null)
|
|
|
|
+ .map(i -> i.getPageData())
|
|
|
|
+ .collect(Collectors.toList())
|
|
|
|
+ );
|
|
|
|
+ }
|
|
|
|
+ if (ListUtil.isNotEmpty(inputInfo.getTransferRecordDocs().getTransferOutDocs())) {
|
|
|
|
+ inputInfo.getPageData().put(
|
|
|
|
+ "转出记录",
|
|
|
|
+ inputInfo.getTransferRecordDocs().getTransferOutDocs()
|
|
|
|
+ .stream()
|
|
|
|
+ .filter(i -> i != null)
|
|
|
|
+ .map(i -> i.getPageData())
|
|
|
|
+ .collect(Collectors.toList())
|
|
|
|
+ );
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|