瀏覽代碼

厂商库相关对象记录,如果没有自定义信息点对应的标准信息点,则生成相关记录

cuixubin 4 年之前
父節點
當前提交
eb384a7622

+ 8 - 0
src/main/java/com/persagy/dptool/CommonUtil.java

@@ -20,6 +20,8 @@ import org.apache.http.util.EntityUtils;
 import java.io.*;
 import java.lang.reflect.Field;
 import java.net.URL;
+import java.time.LocalDateTime;
+import java.time.format.DateTimeFormatter;
 import java.util.*;
 
 public class CommonUtil {
@@ -301,6 +303,12 @@ public class CommonUtil {
         return result;
     }
 
+    public static String getNowTimeString() {
+        DateTimeFormatter dtf = DateTimeFormatter.ofPattern("yyyyMMddHHmmss");
+        LocalDateTime ldt = LocalDateTime.now();
+        return ldt.format(dtf);
+    }
+
     public static void main(String[] args) {
         List<String> dataList = readFileToList(new File("D:/downloads/DingDing/download/4403050019/objects.json"));
         Set<String> allKey = new HashSet<>();

+ 40 - 12
src/main/java/com/persagy/dptool/VenderUtil.java

@@ -80,19 +80,19 @@ public class VenderUtil {
                     infoCodeSet.add(infoCode);
                 }
 
-                if (infoCodeSet.contains("DPBrandID") && infoCodeSet.contains("Brand")) {
+                if (infoCodeSet.contains("DPBrandID")) {
                     processBrand(item);
                 }
-                if (infoCodeSet.contains("DPMaintainerID") && (infoCodeSet.contains("Maintainer") || infoCodeSet.contains("MaintainerContactor") || infoCodeSet.contains("MaintainerPhone"))) {
+                if (infoCodeSet.contains("DPMaintainerID")) {
                     processNameContactPhone(item, "DPMaintainerID", "Maintainer", "MaintainerContactor", "MaintainerPhone");
                 }
-                if (infoCodeSet.contains("DPManufacturerID") && (infoCodeSet.contains("Manufacturer") || infoCodeSet.contains("ManufacturerContactor") || infoCodeSet.contains("ManufacturerPhone"))) {
+                if (infoCodeSet.contains("DPManufacturerID")) {
                     processNameContactPhone(item, "DPManufacturerID", "Manufacturer", "ManufacturerContactor", "ManufacturerPhone");
                 }
-                if (infoCodeSet.contains("DPSupplierID") && (infoCodeSet.contains("Supplier") || infoCodeSet.contains("SupplierContactor") || infoCodeSet.contains("SupplierPhone"))) {
+                if (infoCodeSet.contains("DPSupplierID")) {
                     processNameContactPhone(item, "DPSupplierID", "Supplier", "SupplierContactor", "SupplierPhone");
                 }
-                if (infoCodeSet.contains("DPSpecificationID") && infoCodeSet.contains("Specification")) {
+                if (infoCodeSet.contains("DPSpecificationID")) {
                     processSpecific(item);
                 }
 
@@ -163,10 +163,17 @@ public class VenderUtil {
             }
         }
 
-        if(newCTMRecord == null || !VenderInfo.specificMap.keySet().contains(newCTMRecord.getS_value()) || newStandRecord == null) {
+        if(newCTMRecord == null || !VenderInfo.specificMap.keySet().contains(newCTMRecord.getS_value())) {
             return;
         }
 
+        if(newStandRecord == null) {
+            String timeNow = CommonUtil.getNowTimeString();
+            newStandRecord = new ObjectInfoRecord(newCTMRecord.getProject_id(), newCTMRecord.getObj_type(), newCTMRecord.getObj_id(), "Specification");
+            newStandRecord.setTime(timeNow);
+            item.put("Specification@"+timeNow, newStandRecord);
+        }
+
         SpecificatDTO specificatDTO = VenderInfo.specificMap.get(newCTMRecord.getS_value());
         newStandRecord.setS_value(specificatDTO.getSpecName());
     }
@@ -234,19 +241,33 @@ public class VenderUtil {
 
         String venderId = newCTMRecord.getS_value();
 
-        if(VenderInfo.venderMap.containsKey(venderId) && nameRecord != null) {
+        String timeNow = CommonUtil.getNowTimeString();
+        if(VenderInfo.venderMap.containsKey(venderId)) {
+            if(nameRecord == null) {
+                nameRecord = new ObjectInfoRecord(newCTMRecord.getProject_id(), newCTMRecord.getObj_type(), newCTMRecord.getObj_id(), nameCode);
+                nameRecord.setTime(timeNow);
+                item.put(nameCode+"@"+timeNow, nameRecord);
+            }
+
             nameRecord.setS_value(VenderInfo.venderMap.get(venderId).getVenderName());
         }
 
         if(VenderInfo.venderContMap.containsKey(venderId)) {
             VenderContactDTO venderContactDTO = VenderInfo.venderContMap.get(venderId);
-            if(contactRecord != null) {
-                contactRecord.setS_value(venderContactDTO.getName());
+
+            if(contactRecord == null) {
+                contactRecord = new ObjectInfoRecord(newCTMRecord.getProject_id(), newCTMRecord.getObj_type(), newCTMRecord.getObj_id(), contactCode);
+                contactRecord.setTime(timeNow);
+                item.put(contactCode+"@"+timeNow, contactRecord);
             }
+            contactRecord.setS_value(venderContactDTO.getName());
 
-            if(phoneRecord != null) {
-                phoneRecord.setS_value(venderContactDTO.getPhone());
+            if(phoneRecord == null) {
+                phoneRecord = new ObjectInfoRecord(newCTMRecord.getProject_id(), newCTMRecord.getObj_type(), newCTMRecord.getObj_id(), phoneCode);
+                phoneRecord.setTime(timeNow);
+                item.put(phoneCode+"@"+timeNow, phoneRecord);
             }
+            phoneRecord.setS_value(venderContactDTO.getPhone());
         }
     }
 
@@ -279,10 +300,17 @@ public class VenderUtil {
             }
         }
 
-        if(newCTMRecord == null || !VenderInfo.brandMap.keySet().contains(newCTMRecord.getS_value()) || newStandRecord == null) {
+        if(newCTMRecord == null || !VenderInfo.brandMap.keySet().contains(newCTMRecord.getS_value())) {
             return;
         }
 
+        if(newStandRecord == null) {
+            String timeNow = CommonUtil.getNowTimeString();
+            newStandRecord = new ObjectInfoRecord(newCTMRecord.getProject_id(), newCTMRecord.getObj_type(), newCTMRecord.getObj_id(), "Brand");
+            newStandRecord.setTime(timeNow);
+            item.put("Brand@"+timeNow, newStandRecord);
+        }
+
         BrandDTO brandDTO = VenderInfo.brandMap.get(newCTMRecord.getS_value());
         newStandRecord.setS_value(brandDTO.getBrandName());
     }

+ 15 - 0
src/main/java/com/persagy/dptool/dto/vender/ObjectInfoRecord.java

@@ -12,6 +12,21 @@ public class ObjectInfoRecord {
     private Double d_value;
     private String json_value;
 
+    public ObjectInfoRecord(){}
+
+    /**
+     * @param project_id
+     * @param obj_type
+     * @param obj_id
+     * @param info_id
+     */
+    public ObjectInfoRecord(String project_id, String obj_type, String obj_id, String info_id) {
+        this.project_id = project_id;
+        this.obj_type = obj_type;
+        this.obj_id = obj_id;
+        this.info_id = info_id;
+    }
+
     public String getProject_id() {
         return project_id;
     }