瀏覽代碼

完成获取在维修期/超出维修期的资产

Jxing 6 年之前
父節點
當前提交
86e9edc2f4

+ 7 - 1
src/main/java/com/sagacloud/route/ExceptionHandlerBaseRoute.java

@@ -31,6 +31,12 @@ public class ExceptionHandlerBaseRoute extends RouteBuilder {
                 exchange.getOut().setBody(VendersUtil.errorJsonMsg("连接异常"));
             }
         });
-
+        onException(Exception.class).handled(true).process(new org.apache.camel.Processor() {
+            @Override
+            public void process(Exchange exchange) throws Exception {
+                Exception exception = (Exception) exchange.getProperty(Exchange.EXCEPTION_CAUGHT);
+                exchange.getOut().setBody(VendersUtil.errorJsonMsg(""));
+            }
+        });
     }
 }

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

@@ -4,6 +4,8 @@ import com.alibaba.fastjson.JSONObject;
 import com.github.rjeschke.txtmark.Processor;
 import com.sagacloud.route.processors.Insurance.*;
 import com.sagacloud.route.processors.GetPropByPjProcessor;
+import com.sagacloud.route.processors.Maintainance.FilterPropertyProcessor;
+import com.sagacloud.route.processors.Maintainance.QueryPropertyProcesspr;
 import com.sagacloud.route.processors.Manufacturer.MaunfacturerFilter;
 import com.sagacloud.route.processors.Manufacturer.GetVenderBySpecProcessor;
 import com.sagacloud.utils.Const;
@@ -18,6 +20,7 @@ import java.io.StringWriter;
 public class Route extends ExceptionHandlerBaseRoute {
     @Override
     public void configure() throws Exception {
+        configExceptionHandler();
         rest().get("/doc")
                 .produces("text/html;charset=UTF-8")
                 .route()
@@ -84,9 +87,9 @@ public class Route extends ExceptionHandlerBaseRoute {
                 .consumes(MediaType.APPLICATION_JSON)
                 .produces(MediaType.APPLICATION_JSON)
                 .route()
-                .process(new StoreInsuranceNoProcessor())
+                .process(new QueryPropertyProcesspr())
                 .to("direct:getPropertiesByPj")
-                .process(new GetPropertyInCertainWarrantyProcessor());
+                .process(new FilterPropertyProcessor());
 
         //body为JSONObject,含有projectId字段
         from("direct:getPropertiesByPj")

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

@@ -26,10 +26,10 @@ public class GetPropertyInCertainWarrantyProcessor 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("数据平台返回异常!");
-        // 保存所有保单号
+
         InsurancePost post = (InsurancePost) exchange.getProperty("postParam");
         List<Map<String, Object>> propertyList = dpResult.getContent();
 

+ 76 - 0
src/main/java/com/sagacloud/route/processors/Maintainance/FilterPropertyProcessor.java

@@ -0,0 +1,76 @@
+package com.sagacloud.route.processors.Maintainance;
+/*
+ * 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.route.processors.Insurance.GetPropertyUnderWarrantyProcessor;
+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 FilterPropertyProcessor implements Processor {
+    private static Set<String> returnInfoNames = VendersUtil.createSet("EquipLocalName", "EquipLocalId", "Brand",
+            "Product", "Specification", "MaintainDeadline", "MaintainPeriod");
+    @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.MTN_ID) == null || !post.getVenderId().equals(infos.get(Const.MTN_ID).toString())){
+                propertyList.remove(i);
+            }else{
+                // 将报废日期过期的/报废日期未到的资产过滤掉(根据post的expire字段决定)
+                // 暂时将没有报废日期信息点的资产当作没有作废的资产
+                boolean isPropertyExpire = false;
+                if(infos.get(Const.MTN_DEADLINE) != null){
+                    String deadline = infos.get(Const.MTN_DEADLINE).toString();
+                    try {
+                        Date expireDate = GetPropertyUnderWarrantyProcessor.sdf.parse(deadline);
+                        Date now = new Date();
+                        if(now.compareTo(expireDate) >= 0)
+                            isPropertyExpire = true;
+                    }catch (Exception ignore)
+                    {}
+                }
+                // 过滤掉 (expire = true, isPropertyExpire = false) (expire = false, isPropertyExpire = true)的两种情况下资产
+                if((post.isExpire() && !isPropertyExpire)||(!post.isExpire() && isPropertyExpire)) {
+                    propertyList.remove(i);
+                    continue;
+                }
+                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)));
+    }
+}

+ 24 - 0
src/main/java/com/sagacloud/route/processors/Maintainance/QueryPropertyProcesspr.java

@@ -0,0 +1,24 @@
+package com.sagacloud.route.processors.Maintainance;
+/*
+ * Author: Jxing
+ * Create Time: 2018/7/13
+ */
+
+import com.alibaba.fastjson.JSONObject;
+import com.sagacloud.Exceptions.InvalidPostException;
+import com.sagacloud.cache.ProPasCache;
+import com.sagacloud.pojos.InsurancePost;
+import org.apache.camel.Exchange;
+import org.apache.camel.Processor;
+
+public class QueryPropertyProcesspr 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.getVenderId() == null || post.getProjectId() == null || ProPasCache.getPjSecret(post.getProjectId()) == null)
+            throw new InvalidPostException("参数错误!");
+        exchange.getIn().setBody(jsonStr);
+        exchange.setProperty("postParam", post);
+    }
+}

+ 1 - 1
src/main/java/com/sagacloud/utils/Const.java

@@ -20,5 +20,5 @@ public class Const {
     public static final String INSUR_CONTRACT = "InsuranceNum";//保险单号
     public static final String MTN_ID = "DPMaintainerID";//自定义维修商ID
     public static final String MTN_NAME = "Maintainer";//维修商名称
-
+    public static final String MTN_DEADLINE = "MaintainDeadline";//维修商合同截止日期
 }