瀏覽代碼

供应商查询资产接口完成

FanXiaoyu 6 年之前
父節點
當前提交
a0f408a9b0

+ 14 - 2
src/main/java/com/sagacloud/route/Route.java

@@ -8,6 +8,7 @@ import com.sagacloud.route.processors.Insurance.GetPropertyUnderWarrantyProcesso
 import com.sagacloud.route.processors.Insurance.HandleWarrantyFromVenderProcessor;
 import com.sagacloud.route.processors.Manufacturer.MaunfacturerFilter;
 import com.sagacloud.route.processors.Manufacturer.GetVenderBySpecProcessor;
+import com.sagacloud.route.processors.supplier.SupplierFilter;
 import com.sagacloud.utils.Const;
 import org.apache.commons.io.IOUtils;
 
@@ -46,12 +47,23 @@ public class Route extends ExceptionHandlerBaseRoute {
                 .to(Const.venders+"/manufacturer/specification/query_vender")
                 .process(new MaunfacturerFilter());
 
-        // 查询项目下的资产
+        // 供应商查询项目下的资产
         rest("/supplier/property/").post("query")
                 .consumes(MediaType.APPLICATION_JSON)
                 .produces(MediaType.APPLICATION_JSON)
                 .route()
-                .process();
+                .process(exchange -> {
+                    String jsonStr = exchange.getIn().getBody(String.class);
+                    JSONObject json = JSONObject.parseObject(jsonStr);
+                    exchange.setProperty("venderId",json.getString("venderId"));
+                    exchange.getIn().setBody(jsonStr);
+                })
+                .to("direct:getPropertiesByPj")
+                .process(new GetVenderBySpecProcessor())
+                .to(Const.venders+"/manufacturer/specification/query_vender")
+                .process(new SupplierFilter());
+
+
         // 获取在保资产清单
         rest("/insurance/project/").post("query")
                 .consumes(MediaType.APPLICATION_JSON)

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

@@ -24,7 +24,6 @@ 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 = JSONObject.parseArray(json.getJSONArray("Content").toString(),PropertyObj.class);
         List<String> specIdList = new ArrayList<>();
         for(PropertyObj p : propertyObjList){

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

@@ -68,21 +68,20 @@ public class MaunfacturerFilter implements Processor {
         Map<String, Object> oldInfos = p.getInfos();
         Map<String, Object> newInfos = new HashMap<>();
         p.setInfos(newInfos);
-        newInfos.put("propertyId", p.getId());
-        newInfos.put("localName", oldInfos.get("EquipLocalName"));
-        newInfos.put("localId", oldInfos.get("EquipLocalID"));
-        newInfos.put("picture", oldInfos.get("Pic"));
-        newInfos.put("platePic", oldInfos.get("Nameplate"));
-        newInfos.put("productionDate", oldInfos.get("ProductDate"));
-        newInfos.put("serialNumber", oldInfos.get("serialNum"));
+        newInfos.put("EquipLocalName", oldInfos.get("EquipLocalName"));
+        newInfos.put("EquipLocalId", oldInfos.get("EquipLocalID"));
+        newInfos.put("Pic", oldInfos.get("Pic"));
+        newInfos.put("Nameplate", oldInfos.get("Nameplate"));
+        newInfos.put("ProductDate", oldInfos.get("ProductDate"));
+        newInfos.put("SerialNum", oldInfos.get("SerialNum"));
 
         if (oldInfos.containsKey(Const.SPEC_ID)) {
             String specId = oldInfos.get(Const.SPEC_ID).toString();
             if (specMap.containsKey(specId)) {
                 JSONObject specObj = specMap.get(specId);
-                newInfos.put("brand", specObj.get("brandName"));
-                newInfos.put("product", specObj.get("productName"));
-                newInfos.put("specification", specObj.get("specificationName"));
+                newInfos.put("Brand", specObj.get("brandName"));
+                newInfos.put("Product", specObj.get("productName"));
+                newInfos.put("Specification", specObj.get("specificationName"));
             }
         }
     }

+ 79 - 0
src/main/java/com/sagacloud/route/processors/supplier/SupplierFilter.java

@@ -0,0 +1,79 @@
+package com.sagacloud.route.processors.supplier;
+
+import com.alibaba.fastjson.JSONArray;
+import com.alibaba.fastjson.JSONObject;
+import com.sagacloud.Exceptions.InvalidPostException;
+import com.sagacloud.pojos.PropertyObj;
+import com.sagacloud.utils.Const;
+import com.sagacloud.utils.VendersUtil;
+import org.apache.camel.Exchange;
+import org.apache.camel.Processor;
+
+import java.util.HashMap;
+import java.util.Hashtable;
+import java.util.List;
+import java.util.Map;
+
+/**
+ * Created by Xiaoyu on 2018/7/13
+ */
+public class SupplierFilter implements Processor {
+    @Override
+    public void process(Exchange exchange) throws Exception {
+        String jsonStr = exchange.getIn().getBody(String.class);
+        JSONObject json = JSONObject.parseObject(jsonStr);
+        if (json.getString("result").equalsIgnoreCase("failure")) {
+            throw new InvalidPostException("查询厂商信息出错");
+        }
+        JSONArray content = json.getJSONArray("content");
+        Hashtable<String, JSONObject> specMap = new Hashtable<>();
+        for (int i = 0; i < content.size(); ++i) {
+            JSONObject obj = content.getJSONObject(i);
+            specMap.put(obj.getString("specificationId"), obj);
+        }
+        String targetVenderId = (String) exchange.getProperty("venderId");
+        List<PropertyObj> propertyObjList = (List<PropertyObj>) exchange.getProperty("property");
+        for (int i = propertyObjList.size() - 1; i >= 0; --i) {
+            PropertyObj p = propertyObjList.get(i);
+            boolean valid = validate(p,targetVenderId);
+            if(valid){
+                pruneInfos(p,specMap);
+            }else{
+                propertyObjList.remove(i);
+            }
+        }
+        exchange.getOut().setBody(VendersUtil.successJsonMsg("",propertyObjList));
+    }
+
+    private boolean validate(PropertyObj p, String targetVenderId) {
+        Map<String, Object> infos = p.getInfos();
+        if(infos.get(Const.SUPP_ID)==null){
+            return false;
+        }else{
+            return targetVenderId.equals(infos.get(Const.SUPP_ID));
+        }
+    }
+
+    private void pruneInfos(PropertyObj p, Hashtable<String, JSONObject> specMap){
+        Map<String, Object> oldInfos = p.getInfos();
+        Map<String, Object> newInfos = new HashMap<>();
+        p.setInfos(newInfos);
+        newInfos.put("EquipLocalName", oldInfos.get("EquipLocalName"));
+        newInfos.put("EquipLocalId", oldInfos.get("EquipLocalID"));
+        newInfos.put("PurchasePrice", oldInfos.get("PurchasePrice"));
+        newInfos.put("Warranty", oldInfos.get("Warranty"));
+        newInfos.put("ProductDate", oldInfos.get("ProductDate"));
+        newInfos.put("SerialNum", oldInfos.get("SerialNum"));
+        newInfos.put("SupplierContractID", oldInfos.get("SupplierContractID"));
+
+        if (oldInfos.containsKey(Const.SPEC_ID)) {
+            String specId = oldInfos.get(Const.SPEC_ID).toString();
+            if (specMap.containsKey(specId)) {
+                JSONObject specObj = specMap.get(specId);
+                newInfos.put("Brand", specObj.get("brandName"));
+                newInfos.put("Product", specObj.get("productName"));
+                newInfos.put("Specification", specObj.get("specificationName"));
+            }
+        }
+    }
+}

+ 25 - 21
src/main/resources/documentation.md

@@ -15,16 +15,18 @@ post体:
         "resultMsg":"",
         "content":[
             {
-                "propertyId":"",                // 资产id
-                "EquipLocalName":"",            // 本地名称
-                "EquipLocalId":"",              // 本地编码
-                "brand":"",                     // 品牌
-                "product":"",                   // 产品名
-                "specification":"",             // 型号
-                "picture":"",                   // 正面照名称,根据名称去图片服务中获取
-                "platePic":"",                  // 名牌照片名称,同正面照
-                "productionDate":"",            // 生产日期
-                "serialNumber":""               // 出厂编号
+                "id":"",                    // 资产id
+                "infos":{
+                    "EquipLocalName":"",    // 本地名称
+                    "EquipLocalId":"",      // 本地编码
+                    "Brand":"",             // 品牌
+                    "Product":"",           // 产品名
+                    "Specification":"",     // 型号
+                    "Pic":"",               // 正面照名称,根据名称去图片服务中获取
+                    "Nameplate":"",         // 名牌照片名称,同正面照
+                    "ProductDate":"",       // 生产日期
+                    "SerialNum":""          // 出厂编号                
+                }
             }
         ]        
     }    
@@ -45,17 +47,19 @@ post体:
         "resultMsg":"",
         "content":[
             {
-                "propertyId":"",                // 资产id
-                "EquipLocalName":"",            // 本地名称
-                "EquipLocalId":"",              // 本地编码
-                "brand":"",                     // 品牌
-                "product":"",                   // 产品名
-                "specification":"",             // 型号
-                "price":"",                     // 采购价格
-                "warranty":"",                  // 保修期
-                "productionDate":"",            // 生产日期
-                "serial number":"",             // 出厂编号
-                "contractId":""                 // 合同编号
+                "id":"",
+                "infos":{
+                    "EquipLocalName":"",    // 本地名称
+                    "EquipLocalId":"",      // 本地编码
+                    "Brand":"",             // 品牌
+                    "Product":"",           // 产品名
+                    "Specification":"",     // 型号
+                    "PurchasePrice":"",     // 采购价格
+                    "Warranty":"",          // 保修期
+                    "ProductDate":"",       // 生产日期
+                    "SerialNum":"" ,        // 出厂编号   
+                    "SupplierContractID":"" // 供应合同编号                   
+                }
             }
         ]
     }