|
@@ -36,7 +36,7 @@ public class THR0139 extends QCCatalogue {
|
|
|
String admisDateStr = inputInfo.getBeHospitalizedDoc().getStructureMap().get("入院日期");
|
|
|
String recordDateStr = firstDirectStructureMap.get("查房日期");
|
|
|
String content = firstDirectStructureMap.get("病情记录");
|
|
|
- if (content.contains("初步诊断") || content.contains("诊断明确")) {
|
|
|
+ if (StringUtil.isNotBlank(content) && (content.contains("初步诊断") || content.contains("诊断明确") || content.contains("目前诊断"))) {
|
|
|
status.set("0");
|
|
|
return;
|
|
|
}
|
|
@@ -49,6 +49,7 @@ public class THR0139 extends QCCatalogue {
|
|
|
status.set("0");
|
|
|
return;
|
|
|
}
|
|
|
+
|
|
|
ThreeLevelWardLabel firstDirectLabel = firstDirectDoc.getThreeLevelWardLabel();
|
|
|
if (firstDirectLabel == null) {
|
|
|
return;
|