Browse Source

台帐管理-系统台帐-查询所属专业-系统-设备类时,未返回名称,只有编码字段

lvxianyun 3 years ago
parent
commit
a7eee453cf

+ 22 - 1
src/main/java/com/persagy/proxy/adm/controller/AdmSystemController.java

@@ -22,6 +22,7 @@ import com.persagy.proxy.adm.request.AdmCreateRequest;
 import com.persagy.proxy.adm.request.AdmQueryCriteria;
 import com.persagy.proxy.adm.request.AdmResponse;
 import com.persagy.proxy.adm.service.IAdmBuildingService;
+import com.persagy.proxy.adm.service.IAdmDictService;
 import com.persagy.proxy.adm.service.IAdmFloorService;
 import com.persagy.proxy.adm.service.IAdmSystemService;
 import com.persagy.proxy.adm.utils.AdmQueryCriteriaHelper;
@@ -54,6 +55,8 @@ public class AdmSystemController {
     private IAdmBuildingService buildingService;
     @Autowired
     private IAdmFloorService floorService;
+    @Autowired
+    private IAdmDictService dictService;
     @Value("${middleware.group.code}")
     private String groupCode;
 
@@ -206,7 +209,25 @@ public class AdmSystemController {
         // 组装上下文条件
         InstanceUrlParam context = new InstanceUrlParam(groupCode, null, projectId, AdmCommonConstant.APP_ID);
         request.setName(AdmSystem.OBJ_TYPE);
-        return service.doQuery(context, request, AdmSystem.class);
+        AdmResponse admResponse = service.doQuery(context, request, AdmSystem.class);
+        List<AdmSystem> systemList = (List<AdmSystem>) admResponse.getContent();
+        if(CollUtil.isNotEmpty(systemList)){
+            AdmDict admDict = new AdmDict();
+            admDict.setType(AdmSystem.OBJ_TYPE);
+            AdmResponse admResponseDic = dictService.queryCategory(context, admDict, AdmObjectType.class);
+            if(CollUtil.isNotEmpty(admResponseDic.getContent())){
+                List<AdmObjectType> admDictList = (List<AdmObjectType>) admResponseDic.getContent();
+                Map<String, AdmObjectType> admDictMap = CollUtil.fieldValueMap(admDictList, "code");
+                systemList.stream().forEach(admSystem -> {
+                    if(admDictMap.keySet().contains(admSystem.getClassCode())){
+                        AdmObjectType admDictTemp = admDictMap.get(admSystem.getClassCode());
+                        admSystem.setCategoryName(admDictTemp.getName());
+                    }
+                });
+                admResponse.setContent(systemList);
+            }
+        }
+        return admResponse;
     }
 
 

+ 1 - 1
src/main/java/com/persagy/proxy/adm/model/AdmSystem.java

@@ -36,7 +36,7 @@ public class AdmSystem extends AdmSBaseEntity<AdmSystem> {
     /** 楼层ID */
     private String floorId;
     /** 设备数量 */
-    private String count;
+    private Long count = 0L;
     /** 设备分类名 */
     private String categoryName;
     /** 设备分类名 */