Browse Source

完成根据保单获取资产接口

Jxing 6 năm trước cách đây
mục cha
commit
d61115f8f0

+ 7 - 6
src/main/java/com/sagacloud/route/Route.java

@@ -2,11 +2,8 @@ package com.sagacloud.route;
 
 import com.alibaba.fastjson.JSONObject;
 import com.github.rjeschke.txtmark.Processor;
-import com.sagacloud.route.processors.Insurance.GetInsuranceNoListProcessor;
+import com.sagacloud.route.processors.Insurance.*;
 import com.sagacloud.route.processors.GetPropByPjProcessor;
-import com.sagacloud.route.processors.Insurance.GetPropertyCountInAllWarrantyProcessor;
-import com.sagacloud.route.processors.Insurance.GetPropertyUnderWarrantyProcessor;
-import com.sagacloud.route.processors.Insurance.HandleWarrantyFromVenderProcessor;
 import com.sagacloud.route.processors.Manufacturer.MaunfacturerFilter;
 import com.sagacloud.route.processors.Manufacturer.GetVenderBySpecProcessor;
 import com.sagacloud.utils.Const;
@@ -79,13 +76,17 @@ public class Route extends ExceptionHandlerBaseRoute {
                 .consumes(MediaType.APPLICATION_JSON)
                 .produces(MediaType.APPLICATION_JSON)
                 .route()
-                .process();
+                .process(new StoreInsuranceNoProcessor())
+                .to("direct:getPropertiesByPj")
+                .process(new GetPropertyInCertainWarrantyProcessor());
         // 查询指定项目内合同有效期内的资产/查询指定项目内历史维护资产
         rest("/maintainance/property/").post("query")
                 .consumes(MediaType.APPLICATION_JSON)
                 .produces(MediaType.APPLICATION_JSON)
                 .route()
-                .process();
+                .process(new StoreInsuranceNoProcessor())
+                .to("direct:getPropertiesByPj")
+                .process(new GetPropertyInCertainWarrantyProcessor());
 
         //body为JSONObject,含有projectId字段
         from("direct:getPropertiesByPj")

+ 1 - 1
src/main/java/com/sagacloud/route/processors/Insurance/GetPropertyCountInAllWarrantyProcessor.java

@@ -21,7 +21,7 @@ public class GetPropertyCountInAllWarrantyProcessor implements Processor {
     public void process(Exchange exchange) throws Exception {
         String jsonStr = exchange.getIn().getBody(String.class);
         DPSelectPropertyResult dpResult = JSONObject.parseObject(jsonStr, DPSelectPropertyResult.class);
-        System.out.println(jsonStr);
+        //System.out.println(jsonStr);
         if(dpResult.getResult() == null && !dpResult.getResult().equals("success"))
             throw new InvalidPostException("数据平台返回异常!");
         // 保存所有保单号

+ 59 - 0
src/main/java/com/sagacloud/route/processors/Insurance/GetPropertyInCertainWarrantyProcessor.java

@@ -0,0 +1,59 @@
+package com.sagacloud.route.processors.Insurance;
+/*
+ * Author: Jxing
+ * Create Time: 2018/7/13
+ */
+
+import com.alibaba.fastjson.JSONArray;
+import com.alibaba.fastjson.JSONObject;
+import com.sagacloud.Exceptions.InvalidPostException;
+import com.sagacloud.pojos.DPSelectPropertyResult;
+import com.sagacloud.pojos.InsurancePost;
+import com.sagacloud.utils.Const;
+import com.sagacloud.utils.VendersUtil;
+import org.apache.camel.Exchange;
+import org.apache.camel.Processor;
+
+import java.util.HashSet;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+
+public class GetPropertyInCertainWarrantyProcessor implements Processor {
+    private static Set<String> returnInfoNames = VendersUtil.createSet("EquipLocalName", "EquipLocalId", "Brand",
+            "Product", "Specification");
+    @Override
+    public void process(Exchange exchange) throws Exception {
+        String jsonStr = exchange.getIn().getBody(String.class);
+        DPSelectPropertyResult dpResult = JSONObject.parseObject(jsonStr, DPSelectPropertyResult.class);
+        System.out.println(jsonStr);
+        if(dpResult.getResult() == null && !dpResult.getResult().equals("success"))
+            throw new InvalidPostException("数据平台返回异常!");
+        // 保存所有保单号
+        InsurancePost post = (InsurancePost) exchange.getProperty("postParam");
+        List<Map<String, Object>> propertyList = dpResult.getContent();
+
+        if(propertyList.size() == 0)
+        {
+            exchange.getOut().setBody(VendersUtil.successJsonMsg("", new JSONArray()));
+            return;
+        }
+        Set<String> tmp = null;
+        for(int i = propertyList.size() - 1; i > -1; --i){
+            Map<String, Object> property = propertyList.get(i);
+            Map<String, Object> infos = (Map<String, Object>) property.get("infos");
+            if(infos.get(Const.INSUR_ID) == null || !post.getInsuranceNo().equals(infos.get(Const.INSUR_ID).toString())){
+                propertyList.remove(i);
+            }else{
+                tmp = new HashSet<>();
+                for(String infoName : infos.keySet()){
+                    if(!returnInfoNames.contains(infoName) && !tmp.contains(infoName))
+                        tmp.add(infoName);
+                }
+                for(String infoName : tmp)
+                    infos.remove(infoName);
+            }
+        }
+        exchange.getOut().setBody(VendersUtil.successJsonMsg("", (JSONArray) JSONArray.toJSON(propertyList)));
+    }
+}

+ 23 - 0
src/main/java/com/sagacloud/route/processors/Insurance/StoreInsuranceNoProcessor.java

@@ -0,0 +1,23 @@
+package com.sagacloud.route.processors.Insurance;
+/*
+ * Author: Jxing
+ * Create Time: 2018/7/13
+ */
+
+import com.alibaba.fastjson.JSONObject;
+import com.sagacloud.Exceptions.InvalidPostException;
+import com.sagacloud.pojos.InsurancePost;
+import org.apache.camel.Exchange;
+import org.apache.camel.Processor;
+
+public class StoreInsuranceNoProcessor implements Processor {
+    @Override
+    public void process(Exchange exchange) throws Exception {
+        String jsonStr = exchange.getIn().getBody(String.class);
+        InsurancePost post = JSONObject.parseObject(jsonStr, InsurancePost.class);
+        if(post.getProjectId() == null || post.getInsuranceNo() == null || post.getProjectId().length() != 12 || post.getInsuranceNo().length() == 0)
+            throw new InvalidPostException("Post参数错误");
+        exchange.setProperty("postParam", post);
+        exchange.getIn().setBody(jsonStr);
+    }
+}

+ 10 - 0
src/main/java/com/sagacloud/utils/VendersUtil.java

@@ -4,7 +4,9 @@ package com.sagacloud.utils;
 import com.alibaba.fastjson.JSONArray;
 import com.alibaba.fastjson.JSONObject;
 
+import java.util.HashSet;
 import java.util.List;
+import java.util.Set;
 
 /**
  * Created by wo on 5/2/18.
@@ -52,4 +54,12 @@ public class VendersUtil {
         jsonObj.put("resultMsg", msg);
         return jsonObj;
     }
+
+    public static Set<String> createSet(String... elements) {
+        Set<String> set = new HashSet<>();
+        for (String e : elements) {
+            set.add(e);
+        }
+        return set;
+    }
 }