|
@@ -61,8 +61,8 @@ public class THR0588 extends QCCatalogue {
|
|
|
/******************************************术后首程********************************************************/
|
|
|
if (inputInfo.getOperationDocs().size() > 0) {
|
|
|
List<String> recordDateList = inputInfo.getOperationDocs().stream().map(OperationDoc::getOperationDiscussionDoc).filter(Objects::nonNull)
|
|
|
- .map(OperationDiscussionDoc::getStructureMap).filter(i -> StringUtil.isNotBlank(i.get("记录日期")))
|
|
|
- .map(i -> i.get("记录日期")).collect(Collectors.toList());
|
|
|
+ .map(OperationDiscussionDoc::getStructureMap).filter(i -> StringUtil.isNotBlank(i.get("病历日期")))
|
|
|
+ .map(i -> i.get("病历日期")).collect(Collectors.toList());
|
|
|
for (String recordDateStr : recordDateList) {
|
|
|
Date recordDate = StringUtil.parseDateTime(recordDateStr);
|
|
|
if (recordDate == null) {
|
|
@@ -75,8 +75,8 @@ public class THR0588 extends QCCatalogue {
|
|
|
if (inputInfo.getTransferRecordDocs() != null) {
|
|
|
TransferRecordDoc transferRecordDocs = inputInfo.getTransferRecordDocs();
|
|
|
List<String> intoRecordDateList = transferRecordDocs.getTransferIntoDocs()
|
|
|
- .stream().map(TransferIntoDoc::getStructureMap).filter(i -> StringUtil.isNotBlank(i.get("记录日期")))
|
|
|
- .map(i -> i.get("记录日期")).collect(Collectors.toList());
|
|
|
+ .stream().map(TransferIntoDoc::getStructureMap).filter(i -> StringUtil.isNotBlank(i.get("病历日期")))
|
|
|
+ .map(i -> i.get("病历日期")).collect(Collectors.toList());
|
|
|
for (String recordDateStr : intoRecordDateList) {
|
|
|
Date recordDate = StringUtil.parseDateTime(recordDateStr);
|
|
|
if (recordDate == null) {
|
|
@@ -85,8 +85,8 @@ public class THR0588 extends QCCatalogue {
|
|
|
dateThreeLevelDay.add(recordDate);
|
|
|
}
|
|
|
intoRecordDateList = transferRecordDocs.getTransferOutDocs()
|
|
|
- .stream().map(TransferOutDoc::getStructureMap).filter(i -> StringUtil.isNotBlank(i.get("记录日期")))
|
|
|
- .map(i -> i.get("记录日期")).collect(Collectors.toList());
|
|
|
+ .stream().map(TransferOutDoc::getStructureMap).filter(i -> StringUtil.isNotBlank(i.get("病历日期")))
|
|
|
+ .map(i -> i.get("病历日期")).collect(Collectors.toList());
|
|
|
for (String recordDateStr : intoRecordDateList) {
|
|
|
Date recordDate = StringUtil.parseDateTime(recordDateStr);
|
|
|
if (recordDate == null) {
|
|
@@ -98,8 +98,8 @@ public class THR0588 extends QCCatalogue {
|
|
|
/******************************************阶段小结********************************************************/
|
|
|
if (inputInfo.getStagesSummaryDocs().size() > 0) {
|
|
|
List<String> intoRecordDateList = inputInfo.getStagesSummaryDocs().stream().map(StagesSummaryDoc::getStructureMap)
|
|
|
- .filter(i -> StringUtil.isNotBlank(i.get("记录日期")))
|
|
|
- .map(i -> i.get("记录日期")).collect(Collectors.toList());
|
|
|
+ .filter(i -> StringUtil.isNotBlank(i.get("病历日期")))
|
|
|
+ .map(i -> i.get("病历日期")).collect(Collectors.toList());
|
|
|
for (String recordDateStr : intoRecordDateList) {
|
|
|
Date recordDate = StringUtil.parseDateTime(recordDateStr);
|
|
|
if (recordDate == null) {
|