Bladeren bron

查询保单列表

Jxing 6 jaren geleden
bovenliggende
commit
44d1c7e96c

+ 9 - 0
src/main/java/com/sagacloud/pojos/Warranty.java

@@ -8,6 +8,15 @@ public class Warranty {
     private String insuranceNo;
     private String expireDate;
     private String contractFile;
+    private Integer propertyCount = null;
+
+    public int getPropertyCount() {
+        return propertyCount;
+    }
+
+    public void setPropertyCount(int propertyCount) {
+        this.propertyCount = propertyCount;
+    }
 
     public String getInsuranceNo() {
         return insuranceNo;

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

@@ -4,6 +4,7 @@ import com.alibaba.fastjson.JSONObject;
 import com.github.rjeschke.txtmark.Processor;
 import com.sagacloud.route.processors.Insurance.GetInsuranceNoListProcessor;
 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;
@@ -68,7 +69,11 @@ public class Route extends ExceptionHandlerBaseRoute {
                 .consumes(MediaType.APPLICATION_JSON)
                 .produces(MediaType.APPLICATION_JSON)
                 .route()
-                .process();
+                .process(new GetInsuranceNoListProcessor())
+                .to(String.join("", InitEnvRoute.venders, "/insurance/contract/query"))
+                .process(new HandleWarrantyFromVenderProcessor())
+                .to("direct:getPropertiesByPj")
+                .process(new GetPropertyCountInAllWarrantyProcessor());
         // 根据保单获取资产
         rest("/insurance/contract/property/").post("query")
                 .consumes(MediaType.APPLICATION_JSON)

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

@@ -0,0 +1,58 @@
+package com.sagacloud.route.processors.Insurance;
+/*
+ * Author: Jxing
+ * Create Time: 2018/7/12
+ */
+
+import com.alibaba.fastjson.JSONArray;
+import com.alibaba.fastjson.JSONObject;
+import com.sagacloud.Exceptions.InvalidPostException;
+import com.sagacloud.pojos.DPSelectPropertyResult;
+import com.sagacloud.pojos.Warranty;
+import com.sagacloud.utils.Const;
+import com.sagacloud.utils.VendersUtil;
+import org.apache.camel.Exchange;
+import org.apache.camel.Processor;
+
+import java.util.*;
+
+public class GetPropertyCountInAllWarrantyProcessor implements Processor {
+    @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("数据平台返回异常!");
+        // 保存所有保单号
+        HashMap<String, Warranty> allWarranty = new HashMap<>();
+        List<Warranty> ws = (List<Warranty>) exchange.getProperty("warrantyList");
+        List<Map<String, Object>> propertyList = dpResult.getContent();
+        //
+        for(int i = 0; i < ws.size(); ++i){
+            Warranty warrnaty = ws.get(i);
+            warrnaty.setPropertyCount(0);
+            try {
+                if(!allWarranty.containsKey(warrnaty.getInsuranceNo())) {
+                    allWarranty.put(warrnaty.getInsuranceNo(), warrnaty);
+                }
+            }catch (Exception ignore)
+            {}
+        }
+        if(allWarranty.size() == 0 || propertyList.size() == 0)
+        {
+            exchange.getOut().setBody(VendersUtil.successJsonMsg("", new JSONArray()));
+            return;
+        }
+
+        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 && allWarranty.containsKey(infos.get(Const.INSUR_ID).toString().trim())){
+                Warranty w = allWarranty.get(infos.get(Const.INSUR_ID).toString().trim());
+                w.setPropertyCount(w.getPropertyCount() + 1);
+            }
+        }
+        exchange.getOut().setBody(VendersUtil.successJsonMsg("", (JSONArray) JSONArray.toJSON(ws)));
+    }
+}