|
@@ -61,6 +61,14 @@ public class THR0588 extends QCCatalogue {
|
|
|
}
|
|
|
dateThreeLevelDay.add(threeLevelDate);
|
|
|
}
|
|
|
+ /******************************************首次病程********************************************************/
|
|
|
+ if (inputInfo.getFirstCourseRecordDoc() != null) {
|
|
|
+ Map<String, String> structureMap = inputInfo.getFirstCourseRecordDoc().getStructureMap();
|
|
|
+ if (StringUtil.isNotBlank(structureMap.get("病历日期"))) {
|
|
|
+ Date recordDate = StringUtil.parseDateTime(structureMap.get("病历日期"));
|
|
|
+ dateThreeLevelDay.add(recordDate);
|
|
|
+ }
|
|
|
+ }
|
|
|
/******************************************术后首程********************************************************/
|
|
|
if (inputInfo.getOperationDocs().size() > 0) {
|
|
|
List<String> recordDateList = inputInfo.getOperationDocs().stream().map(OperationDoc::getOperationDiscussionDoc).filter(Objects::nonNull)
|