|
@@ -169,7 +169,7 @@ public class ChangxDocTrans extends DocTrans {
|
|
inputInfo.getOperationDocs()
|
|
inputInfo.getOperationDocs()
|
|
.stream()
|
|
.stream()
|
|
.filter(operationDoc -> operationDoc != null && operationDoc.getOperationDiscussionDoc() != null)
|
|
.filter(operationDoc -> operationDoc != null && operationDoc.getOperationDiscussionDoc() != null)
|
|
- .map(operationDoc -> operationDoc.getOperationDiscussionDoc())
|
|
|
|
|
|
+ .map(operationDoc -> operationDoc.getOperationDiscussionDoc().getPageData())
|
|
.collect(Collectors.toList())
|
|
.collect(Collectors.toList())
|
|
);
|
|
);
|
|
inputInfo.getPageData().put(
|
|
inputInfo.getPageData().put(
|
|
@@ -177,7 +177,7 @@ public class ChangxDocTrans extends DocTrans {
|
|
inputInfo.getOperationDocs()
|
|
inputInfo.getOperationDocs()
|
|
.stream()
|
|
.stream()
|
|
.filter(operationDoc -> operationDoc != null && operationDoc.getOperationRecordDoc() != null)
|
|
.filter(operationDoc -> operationDoc != null && operationDoc.getOperationRecordDoc() != null)
|
|
- .map(operationDoc -> operationDoc.getOperationRecordDoc())
|
|
|
|
|
|
+ .map(operationDoc -> operationDoc.getOperationRecordDoc().getPageData())
|
|
.collect(Collectors.toList())
|
|
.collect(Collectors.toList())
|
|
);
|
|
);
|
|
inputInfo.getPageData().put(
|
|
inputInfo.getPageData().put(
|
|
@@ -185,7 +185,7 @@ public class ChangxDocTrans extends DocTrans {
|
|
inputInfo.getOperationDocs()
|
|
inputInfo.getOperationDocs()
|
|
.stream()
|
|
.stream()
|
|
.filter(operationDoc -> operationDoc != null && operationDoc.getPreoperativeDiscussionDoc() != null)
|
|
.filter(operationDoc -> operationDoc != null && operationDoc.getPreoperativeDiscussionDoc() != null)
|
|
- .map(operationDoc -> operationDoc.getPreoperativeDiscussionDoc())
|
|
|
|
|
|
+ .map(operationDoc -> operationDoc.getPreoperativeDiscussionDoc().getPageData())
|
|
.collect(Collectors.toList())
|
|
.collect(Collectors.toList())
|
|
);
|
|
);
|
|
}
|
|
}
|