|
@@ -15,6 +15,8 @@ import java.util.List;
|
|
|
/**
|
|
|
* @ClassName : BEH02909
|
|
|
* @Description : 目前使用药物情况与现病史描述不一致
|
|
|
+ * 两者都不为空
|
|
|
+ *现病史中出现的药去目前使用药物情况找,如果找不到就报
|
|
|
* @Author : 胡敬
|
|
|
* @Date: 2020-06-11 16:10
|
|
|
*/
|
|
@@ -27,16 +29,12 @@ public class BEH02909 extends QCCatalogue {
|
|
|
status.set("0");
|
|
|
return;
|
|
|
}
|
|
|
- String drugsCurrentlyInUse = inputInfo.getBeHospitalizedDoc().getStructureMap().get("目前使用的药物");
|
|
|
+ String drugsCurrentlyInUse = inputInfo.getBeHospitalizedDoc().getStructureMap().get("长期用药");
|
|
|
if (StringUtil.isBlank(drugsCurrentlyInUse)) {
|
|
|
status.set("0");
|
|
|
return;
|
|
|
}
|
|
|
- /*if (drugsCurrentlyInUse.contains("见现病史")) {
|
|
|
- status.set("0");
|
|
|
- return;
|
|
|
- }*/
|
|
|
- /*List<String> drug = getDrug(drugsCurrentlyInUse);*/
|
|
|
+
|
|
|
PresentLabel presentLabel = inputInfo.getBeHospitalizedDoc().getPresentLabel();
|
|
|
if (presentLabel == null) {
|
|
|
status.set("0");
|