|
@@ -28,8 +28,7 @@ public class BEH0014 extends QCCatalogue {
|
|
|
, "药物", "误服", "查", "撞", "伤", "月经", "暴力", "超", "术");
|
|
|
|
|
|
public void start(InputInfo inputInfo, OutputInfo outputInfo) {
|
|
|
- if (inputInfo.getBeHospitalizedDoc() == null
|
|
|
- || StringUtil.isBlank(inputInfo.getBeHospitalizedDoc().getChiefLabel().getText())) {
|
|
|
+ if (inputInfo.getBeHospitalizedDoc() == null) {
|
|
|
status.set("0");
|
|
|
return;
|
|
|
}
|
|
@@ -45,7 +44,7 @@ public class BEH0014 extends QCCatalogue {
|
|
|
}
|
|
|
}*/
|
|
|
PresentLabel presentLabel = inputInfo.getBeHospitalizedDoc().getPresentLabel();
|
|
|
- if (presentLabel == null) {
|
|
|
+ if (presentLabel == null || StringUtil.isBlank(presentLabel.getText())) {
|
|
|
status.set("0");
|
|
|
return;
|
|
|
}
|