|
@@ -36,7 +36,8 @@ public class THR0130 extends QCCatalogue {
|
|
Map<String, String> firstAttendStructureMap = firstAttendDoc.getStructureMap();
|
|
Map<String, String> firstAttendStructureMap = firstAttendDoc.getStructureMap();
|
|
String admisDateStr = inputInfo.getBeHospitalizedDoc().getStructureMap().get("入院日期");
|
|
String admisDateStr = inputInfo.getBeHospitalizedDoc().getStructureMap().get("入院日期");
|
|
String recordDateStr = firstAttendStructureMap.get("查房日期");
|
|
String recordDateStr = firstAttendStructureMap.get("查房日期");
|
|
- if (CatalogueUtil.isEmpty(admisDateStr) || CatalogueUtil.isEmpty(recordDateStr)) {
|
|
|
|
|
|
+ String content = firstAttendStructureMap.get("病情记录");
|
|
|
|
+ if (CatalogueUtil.isEmpty(admisDateStr) || CatalogueUtil.isEmpty(recordDateStr) || CatalogueUtil.isEmpty(content)) {
|
|
status.set("0");
|
|
status.set("0");
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
@@ -45,6 +46,10 @@ public class THR0130 extends QCCatalogue {
|
|
status.set("0");
|
|
status.set("0");
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
|
|
+ if (content.contains("病史") || content.contains("查体") || content.contains("补充")) {
|
|
|
|
+ status.set("0");
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
if (StringUtil.isNotBlank(firstAttendStructureMap.get("体检"))) {
|
|
if (StringUtil.isNotBlank(firstAttendStructureMap.get("体检"))) {
|
|
status.set("0");
|
|
status.set("0");
|
|
return;
|
|
return;
|