|
@@ -21,13 +21,13 @@ public class BEH0044 extends QCCatalogue {
|
|
|
|
|
|
@Override
|
|
|
public void start(InputInfo inputInfo, OutputInfo outputInfo) {
|
|
|
- if(inputInfo.getBeHospitalizedDoc() == null){
|
|
|
+ if (inputInfo.getBeHospitalizedDoc() == null) {
|
|
|
status.set("0");
|
|
|
return;
|
|
|
}
|
|
|
//台州结构化
|
|
|
Map<String, String> structureMap_beh = inputInfo.getBeHospitalizedDoc().getStructureMap();
|
|
|
- if(StringUtils.isNotEmpty(structureMap_beh.get("疫区居留史"))){
|
|
|
+ if (StringUtils.isNotEmpty(structureMap_beh.get("疫区居留史"))) {
|
|
|
status.set("0");
|
|
|
return;
|
|
|
}
|
|
@@ -37,12 +37,13 @@ public class BEH0044 extends QCCatalogue {
|
|
|
return;
|
|
|
}
|
|
|
String personalText = personalLabel.getText();
|
|
|
- if (personalText.contains("详见原病历")) {
|
|
|
+ if (personalText.contains("详见病历")) {
|
|
|
status.set("0");
|
|
|
return;
|
|
|
}
|
|
|
//北仑硬匹配
|
|
|
- if (personalText.contains("否认疫水疫源接触史") || personalText.contains("否认疫区、疫情、疫水接触史")) {
|
|
|
+ if (personalText.contains("否认疫水疫源接触史") || personalText.contains("否认疫区、疫情、疫水接触史")
|
|
|
+ || personalText.contains("否认其他疫区、疫情、疫水接触史")) {
|
|
|
status.set("0");
|
|
|
return;
|
|
|
}
|