|
@@ -4,6 +4,7 @@ import com.lantone.qc.kernel.catalogue.QCCatalogue;
|
|
import com.lantone.qc.kernel.util.CatalogueUtil;
|
|
import com.lantone.qc.kernel.util.CatalogueUtil;
|
|
import com.lantone.qc.pub.model.InputInfo;
|
|
import com.lantone.qc.pub.model.InputInfo;
|
|
import com.lantone.qc.pub.model.OutputInfo;
|
|
import com.lantone.qc.pub.model.OutputInfo;
|
|
|
|
+import com.lantone.qc.pub.util.StringUtil;
|
|
import org.springframework.stereotype.Component;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
import java.util.Map;
|
|
import java.util.Map;
|
|
@@ -11,7 +12,7 @@ import java.util.Map;
|
|
|
|
|
|
/**
|
|
/**
|
|
* @ClassName : BEH0474
|
|
* @ClassName : BEH0474
|
|
- * @Description : 一般情况未填写
|
|
|
|
|
|
+ * @Description : 体格检查一般情况未填写
|
|
* @Author : 胡敬
|
|
* @Author : 胡敬
|
|
* @Date: 2020-03-26 19:39
|
|
* @Date: 2020-03-26 19:39
|
|
*/
|
|
*/
|
|
@@ -23,10 +24,15 @@ public class BEH0474 extends QCCatalogue {
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
Map<String, String> structureMap = inputInfo.getBeHospitalizedDoc().getStructureMap();
|
|
Map<String, String> structureMap = inputInfo.getBeHospitalizedDoc().getStructureMap();
|
|
- if (structureMap != null) {
|
|
|
|
- if (CatalogueUtil.isEmpty(structureMap.get("既往健康状况"))) {
|
|
|
|
- status.set("-1");
|
|
|
|
- }
|
|
|
|
|
|
+ String mind = structureMap.get("神志水平");
|
|
|
|
+ String cooperation = structureMap.get("查体合作性");
|
|
|
|
+ String position = structureMap.get("体位");
|
|
|
|
+ String face = structureMap.get("面容");
|
|
|
|
+ String height = structureMap.get("身高");
|
|
|
|
+ String weight = structureMap.get("体重");
|
|
|
|
+ if (StringUtil.isBlank(mind) && StringUtil.isBlank(cooperation) && StringUtil.isBlank(position)
|
|
|
|
+ && StringUtil.isBlank(face) && StringUtil.isBlank(height) && StringUtil.isBlank(weight)) {
|
|
|
|
+ status.set("-1");
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|