|
@@ -30,10 +30,7 @@ public class BEH0013 extends QCCatalogue {
|
|
|
BeHospitalizedDoc beHospitalizedDoc = inputInfo.getBeHospitalizedDoc();
|
|
|
//现病史
|
|
|
PresentLabel presentLabel = beHospitalizedDoc.getPresentLabel();
|
|
|
- //既往史
|
|
|
- PastLabel pastLabel = beHospitalizedDoc.getPastLabel();
|
|
|
- if ((presentLabel == null || StringUtil.isBlank(presentLabel.getText()) || "。".equals(presentLabel.getText()))
|
|
|
- && (StringUtil.isBlank(pastLabel.getText()) || "。".equals(pastLabel.getText()))) {
|
|
|
+ if (presentLabel == null || StringUtil.isBlank(presentLabel.getText()) || "。".equals(presentLabel.getText())) {
|
|
|
return;
|
|
|
}
|
|
|
String text = presentLabel.getText();
|