فهرست منبع

Merge remote-tracking branch 'origin/dev/ruleTest20210105' into test

zhaops 4 سال پیش
والد
کامیت
4bf51fcb43

+ 2 - 2
cdssman-service/src/main/java/com/diagbot/facade/DrugConfigFacade.java

@@ -539,7 +539,7 @@ public class DrugConfigFacade {
         for (Map.Entry<String, List<DrugConfig>> entry : hisNameMap.entrySet()) {
             if (ListUtil.isNotEmpty(entry.getValue())) {
                 retMap.put(entry.getKey(),
-                        EntityUtil.makeMapWithKeyValue(records, "uniqueName", "id"));
+                        EntityUtil.makeMapWithKeyValue(entry.getValue(), "uniqueName", "id"));
             }
         }
         return retMap;
@@ -579,7 +579,7 @@ public class DrugConfigFacade {
         for (Map.Entry<String, List<DrugConfig>> entry : uniqueNameMap.entrySet()) {
             if (ListUtil.isNotEmpty(entry.getValue())) {
                 retMap.put(entry.getKey(),
-                        EntityUtil.makeMapWithKeyValue(records, "hisName", "id"));
+                        EntityUtil.makeMapWithKeyValue(entry.getValue(), "hisName", "id"));
             }
         }
         return retMap;

تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 375 - 449
cdssman-service/src/main/java/com/diagbot/facade/ResultStaticKnowledgeFacade.java