Ver código fonte

事中住院接口

0027005599 2 anos atrás
pai
commit
cb0cab91ce

+ 3 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/medical/ruleengine/HospGetDataToRuleEngine.java

@@ -88,6 +88,9 @@ public class HospGetDataToRuleEngine {
         }
         List<Map<String, Object>> diagnoseMapList = new ArrayList<>();
         for (Map<String, Object> detailMap : diagnoseList) {
+            if(null == detailMap.get("MEDICAL_INSURANCE_MARK")){
+                detailMap.put("medical_insurance_mark", "1");
+            }
             detailMap.put("MEDICAL_DEPT_CODE", detailMap.get("ADMISSION_DEPT"));
             detailMap.put("MEDICAL_DEPT_NAME", detailMap.get("ADMISSION_DEPT_NAME"));
             Map<String, Object> lowercaseMap = new HashMap<>();