Browse Source

生产商查询资产接口完成

FanXiaoyu 6 years ago
parent
commit
858cbcf961

+ 2 - 1
src/main/java/com/sagacloud/route/processors/Manufacturer/GetVenderBySpecProcessor.java

@@ -24,7 +24,8 @@ public class GetVenderBySpecProcessor implements Processor {
         if(json.getString("Result").equalsIgnoreCase("failure")){
             throw new InvalidPostException("查询数据平台资产出错");
         }
-        List<PropertyObj> propertyObjList = JSON.parseObject(json.getJSONArray("Content").toString(),List.class);
+//        List<PropertyObj> propertyObjList = JSON.parseObject(json.getJSONArray("Content").toString(),List.class);
+        List<PropertyObj> propertyObjList = JSONObject.parseArray(json.getJSONArray("Content").toString(),PropertyObj.class);
         List<String> specIdList = new ArrayList<>();
         for(PropertyObj p : propertyObjList){
             Map<String,Object> infos = p.getInfos();

+ 2 - 2
src/main/java/com/sagacloud/route/processors/Manufacturer/MaunfacturerFilter.java

@@ -81,8 +81,8 @@ public class MaunfacturerFilter implements Processor {
             if (specMap.containsKey(specId)) {
                 JSONObject specObj = specMap.get(specId);
                 newInfos.put("brand", specObj.get("brandName"));
-                newInfos.put("product", oldInfos.get("productName"));
-                newInfos.put("specification", oldInfos.get("specificationName"));
+                newInfos.put("product", specObj.get("productName"));
+                newInfos.put("specification", specObj.get("specificationName"));
             }
         }
     }