|
@@ -64,7 +64,10 @@ public class BEH0025 extends QCCatalogue {
|
|
|
String pastLabelText = pastLabel.getText();
|
|
|
if (pastLabelText.contains("手术") || pastLabelText.contains("详见原病历")
|
|
|
|| pastLabelText.contains("体外碎石") || pastLabelText.contains("术后")
|
|
|
- || pastLabelText.matches(".*行.*术.*")) {
|
|
|
+ || pastLabelText.matches(".*行.*术.*")
|
|
|
+ || pastLabelText.contains("孕期")
|
|
|
+ || pastLabelText.contains("产期")
|
|
|
+ || pastLabelText.contains("待产")) {
|
|
|
status.set("0");
|
|
|
}
|
|
|
//现病史里出现手术记录也不报
|
|
@@ -72,7 +75,10 @@ public class BEH0025 extends QCCatalogue {
|
|
|
String presentText=presentLabel.getText();
|
|
|
if(presentText.contains("手术") || presentText.contains("详见原病历")
|
|
|
|| presentText.contains("体外碎石") || presentText.contains("术后")
|
|
|
- || presentText.matches(".*行.*术.*")){
|
|
|
+ || presentText.matches(".*行.*术.*")
|
|
|
+ || pastLabelText.contains("孕期")
|
|
|
+ || pastLabelText.contains("产期")
|
|
|
+ || pastLabelText.contains("待产")){
|
|
|
status.set("0");
|
|
|
}
|
|
|
}
|