|
@@ -63,12 +63,14 @@ public class BEH0025 extends QCCatalogue {
|
|
//规则硬匹配
|
|
//规则硬匹配
|
|
String pastLabelText = pastLabel.getText();
|
|
String pastLabelText = pastLabel.getText();
|
|
if (pastLabelText.contains("手术") || pastLabelText.contains("详见原病历")
|
|
if (pastLabelText.contains("手术") || pastLabelText.contains("详见原病历")
|
|
- || pastLabelText.contains("体外碎石")) {
|
|
|
|
|
|
+ || pastLabelText.contains("体外碎石") || pastLabelText.contains("术后")) {
|
|
status.set("0");
|
|
status.set("0");
|
|
}
|
|
}
|
|
//现病史里出现手术记录也不报
|
|
//现病史里出现手术记录也不报
|
|
PresentLabel presentLabel=inputInfo.getBeHospitalizedDoc().getPresentLabel();
|
|
PresentLabel presentLabel=inputInfo.getBeHospitalizedDoc().getPresentLabel();
|
|
- if(presentLabel!=null&&presentLabel.getText().contains("手术")){
|
|
|
|
|
|
+ String presentText=presentLabel.getText();
|
|
|
|
+ if(presentText.contains("手术") || presentText.contains("详见原病历")
|
|
|
|
+ || presentText.contains("体外碎石") || presentText.contains("术后")){
|
|
status.set("0");
|
|
status.set("0");
|
|
}
|
|
}
|
|
}
|
|
}
|