|
@@ -61,7 +61,11 @@ public class THR0134 extends QCCatalogue {
|
|
|
if (operationDoc.getOperationRecordDoc() != null) {
|
|
|
Map<String, String> structureMap = operationDoc.getOperationRecordDoc().getStructureMap();
|
|
|
String opeEndDate = structureMap.get("手术结束时间");
|
|
|
- if (opeEndDate.contains("年月日")) {
|
|
|
+ if (StringUtil.isBlank(opeEndDate)) {
|
|
|
+ opeEndDate = structureMap.get("记录时间");
|
|
|
+ }
|
|
|
+ String regex = ".*\\d.*";
|
|
|
+ if (!opeEndDate.matches(regex)) {
|
|
|
continue;
|
|
|
}
|
|
|
if (StringUtil.isNotBlank(opeEndDate) &&
|