|
@@ -33,7 +33,8 @@ public class BEH0375 extends QCCatalogue {
|
|
|
//硬规则 匹配未婚
|
|
|
MaritalLabel maritalLabel = inputInfo.getBeHospitalizedDoc().getMaritalLabel();
|
|
|
if (maritalLabel != null &&
|
|
|
- (maritalLabel.getText().contains("未婚")
|
|
|
+ (StringUtil.isBlank(maritalLabel.getText())
|
|
|
+ || maritalLabel.getText().contains("未婚")
|
|
|
|| maritalLabel.getText().contains("离婚")
|
|
|
|| maritalLabel.getText().contains("已故"))) {
|
|
|
status.set("0");
|
|
@@ -41,7 +42,7 @@ public class BEH0375 extends QCCatalogue {
|
|
|
}
|
|
|
//台州市结构化的
|
|
|
Map<String, String> structureMap_beh = inputInfo.getBeHospitalizedDoc().getStructureMap();
|
|
|
- if(StringUtils.isNotEmpty(structureMap_beh.get("配偶健康状况"))){
|
|
|
+ if (StringUtils.isNotEmpty(structureMap_beh.get("配偶健康状况"))) {
|
|
|
status.set("0");
|
|
|
return;
|
|
|
}
|