From d2112d88bb536f8e08eb3ce123a2b2230c4411f9 Mon Sep 17 00:00:00 2001
From: xyc <jc_xiong@hotmail.com>
Date: 星期二, 15 十月 2024 14:08:31 +0800
Subject: [PATCH] 修改自动排版算法

---
 modules/mainPart/src/main/java/com/zt/life/modules/mainPart/basicInfo/service/XhProductModelService.java |  140 +++++++++++++++++++---------------------------
 1 files changed, 59 insertions(+), 81 deletions(-)

diff --git a/modules/mainPart/src/main/java/com/zt/life/modules/mainPart/basicInfo/service/XhProductModelService.java b/modules/mainPart/src/main/java/com/zt/life/modules/mainPart/basicInfo/service/XhProductModelService.java
index 2154a48..b62fc7b 100644
--- a/modules/mainPart/src/main/java/com/zt/life/modules/mainPart/basicInfo/service/XhProductModelService.java
+++ b/modules/mainPart/src/main/java/com/zt/life/modules/mainPart/basicInfo/service/XhProductModelService.java
@@ -125,7 +125,6 @@
     }
 
     public List<Map<String, Object>> importProductExcel(MultipartFile mutFile, String progressId, Long shipId) {
-        int count = 0;
         Date beginDate = new Date();
         List<Map<String, Object>> list = new ArrayList<>();//瀛樺偍鎵�鏈夌殑瀵煎叆鐘舵��
         Map<String, Object> map;//瀛樺偍姣忎竴琛岀殑鐘舵��
@@ -145,16 +144,6 @@
         isOrNot.put("鏄�", 1);
         isOrNot.put("鍚�", 0);
 
-        //鑾峰彇鏄惁鏈夋暟鎹紝濡傛灉鏈夊垯鍒犻櫎鏁版嵁
-     /*   List<XhProductModel> productList = this.getByShipId(shipId);
-        List<ParamData> dataList = paramDataService.getByShipId(shipId);
-        if (productList.size() > 0) {
-            this.deleteByShipId(shipId);
-        }
-        if (dataList.size() > 0) {
-            paramDataService.deleteByShipId(shipId);
-        }*/
-
         try {
             // 鑾峰彇瀵煎叆鏂囦欢鐨勫悗缂�鍚�
             String fileName = mutFile.getOriginalFilename();
@@ -168,20 +157,18 @@
             assert workbook != null; //鏂█濡傛灉[boolean琛ㄨ揪寮廬涓簍rue锛屽垯绋嬪簭缁х画鎵ц銆� 濡傛灉涓篺alse锛屽垯绋嬪簭鎶涘嚭AssertionError锛屽苟缁堟鎵ц銆�
             int sheets = workbook.getNumberOfSheets();
 
-            //List<LifeManagement> lifeManagementList = new ArrayList<LifeManagement>();
             Long curXtId = null;
             Long curFxtId = null;
-            Long curSbId = null;
+            Long curSbId;
             String curXtName = "";
             String curFxtName = "";
 
-
             Map<String, XhProductModel> modelMap = new HashMap<>();
-            List<XhProductModel> prductList =baseDao.getProductPath(shipId);
+            List<XhProductModel> prductList = baseDao.getProductPath(shipId);
 
-            for (XhProductModel product :prductList){
-                if(StringUtils.isNotBlank(product.getNamePath())){
-                    modelMap.put(product.getNamePath(),product);
+            for (XhProductModel product : prductList) {
+                if (StringUtils.isNotBlank(product.getNamePath())) {
+                    modelMap.put(product.getNamePath(), product);
                 }
             }
 
@@ -198,54 +185,32 @@
                     insertSb = false;
                     CacheUtils.put(progressId, "speed", CommonUtils.getPercent(j, num));
                     CacheUtils.put(progressId, "msg", "鍏�" + num + "琛岋紝宸插畬鎴愮" + j + "琛�");
-                  /*  boolean isToggleXt = false;
-                    boolean isToggleFxt = false;*/
+
                     row1 = j + 1;
                     String pattern = "yyyy-MM-dd";
                     Row row = sheet.getRow(row1);
                     String sort = com.zt.core.shiro.ImportUtil.getCellValue(row, 0, pattern); //搴忓彿
-/*                    if (StringUtils.isNotBlank(com.zt.core.shiro.ImportUtil.getCellValue(row, 1, pattern))) {
-                        if (!com.zt.core.shiro.ImportUtil.getCellValue(row, 1, pattern).equals(xt)) {
-                            isToggleXt = true;
-                            xtId = UUIDUtil.generateId();
-                        }
-                        xt = com.zt.core.shiro.ImportUtil.getCellValue(row, 1, pattern); //绯荤粺
-                    }
-
-                    if (StringUtils.isNotBlank(com.zt.core.shiro.ImportUtil.getCellValue(row, 2, pattern)) && !isToggleXt) {
-                        fxt = com.zt.core.shiro.ImportUtil.getCellValue(row, 2, pattern); //鍒嗙郴缁�
-                        fxtId = UUIDUtil.generateId();
-                        isToggleFxt = true;
-                    } else if (isToggleXt) {
-                        if (StringUtils.isNotBlank(com.zt.core.shiro.ImportUtil.getCellValue(row, 2, pattern))) {
-                            fxt = com.zt.core.shiro.ImportUtil.getCellValue(row, 2, pattern); //鍒嗙郴缁�
-                            fxtId = UUIDUtil.generateId();
-                            isToggleFxt = true;
-                        } else {
-                            fxt = null;
-                            isToggleFxt = true;
-                        }
-                    }*/
 
                     String xt = com.zt.core.shiro.ImportUtil.getCellValue(row, 1, pattern); //绯荤粺
                     String fxt = com.zt.core.shiro.ImportUtil.getCellValue(row, 2, pattern);
                     String sb = com.zt.core.shiro.ImportUtil.getCellValue(row, 3, pattern); //璁惧
-                    String equipType = com.zt.core.shiro.ImportUtil.getCellValue(row, 4, pattern); //璁惧绫诲瀷
-                    String reliabDistribType = com.zt.core.shiro.ImportUtil.getCellValue(row, 5, pattern); //鍙潬鎬у垎甯冪被鍨�
-                    String basicJoinCompute = com.zt.core.shiro.ImportUtil.getCellValue(row, 6, pattern); //鍙傚姞璁$畻
-                    String basicMtbfRegulate = com.zt.core.shiro.ImportUtil.getCellValue(row, 7, pattern); //mtbf
-                    String basicMtbfRegulSuccRate = com.zt.core.shiro.ImportUtil.getCellValue(row, 8, pattern); //鎴愬姛鐜�
-                    String basicMtbfOperatingRatio = com.zt.core.shiro.ImportUtil.getCellValue(row, 9, pattern); //杩愯姣�
-                    String taskMtbcfRegulate = com.zt.core.shiro.ImportUtil.getCellValue(row, 10, pattern); //mtbcf
-                    String taskMtbcfOtherParams2 = com.zt.core.shiro.ImportUtil.getCellValue(row, 11, pattern); //mtbcf鍏朵粬鍙傛暟2
-                    String taskMtbcfOtherParams3 = com.zt.core.shiro.ImportUtil.getCellValue(row, 12, pattern); //mtbcf鍏朵粬鍙傛暟3
-                    String taskMtbcfRegulSuccRate = com.zt.core.shiro.ImportUtil.getCellValue(row, 13, pattern); //mtbcf鎴愬姛鐜�
-                    String taskMtbcfOperatingRatio = com.zt.core.shiro.ImportUtil.getCellValue(row, 14, pattern); //mtbcf杩愯姣�
-                    String repairable = com.zt.core.shiro.ImportUtil.getCellValue(row, 15, pattern); //鏄惁鍙淮淇�
-                    String repairDistribType = com.zt.core.shiro.ImportUtil.getCellValue(row, 16, pattern); //缁翠慨鍙戝竷绫诲瀷
-                    String repairMttcr = com.zt.core.shiro.ImportUtil.getCellValue(row, 17, pattern); //mttcr
-                    String repairMttcrOtherParams2 = com.zt.core.shiro.ImportUtil.getCellValue(row, 18, pattern); //mttcr鍏朵粬鍙傛暟2
-                    String repairMttcrOtherParams3 = com.zt.core.shiro.ImportUtil.getCellValue(row, 19, pattern); //mttcr鍏朵粬鍙傛暟3
+                    String sameSbName = com.zt.core.shiro.ImportUtil.getCellValue(row, 4, pattern); //鍚岀被璁惧鍚嶇О
+                    String equipType = com.zt.core.shiro.ImportUtil.getCellValue(row, 5, pattern); //璁惧绫诲瀷
+                    String reliabDistribType = com.zt.core.shiro.ImportUtil.getCellValue(row, 6, pattern); //鍙潬鎬у垎甯冪被鍨�
+                    String basicJoinCompute = com.zt.core.shiro.ImportUtil.getCellValue(row, 7, pattern); //鍙傚姞璁$畻
+                    String basicMtbfRegulate = com.zt.core.shiro.ImportUtil.getCellValue(row, 8, pattern); //mtbf
+                    String basicMtbfRegulSuccRate = com.zt.core.shiro.ImportUtil.getCellValue(row, 9, pattern); //鎴愬姛鐜�
+                    String basicMtbfOperatingRatio = com.zt.core.shiro.ImportUtil.getCellValue(row, 10, pattern); //杩愯姣�
+                    String taskMtbcfRegulate = com.zt.core.shiro.ImportUtil.getCellValue(row, 11, pattern); //mtbcf
+                    String taskMtbcfOtherParams2 = com.zt.core.shiro.ImportUtil.getCellValue(row, 12, pattern); //mtbcf鍏朵粬鍙傛暟2
+                    String taskMtbcfOtherParams3 = com.zt.core.shiro.ImportUtil.getCellValue(row, 13, pattern); //mtbcf鍏朵粬鍙傛暟3
+                    String taskMtbcfRegulSuccRate = com.zt.core.shiro.ImportUtil.getCellValue(row, 14, pattern); //mtbcf鎴愬姛鐜�
+                    String taskMtbcfOperatingRatio = com.zt.core.shiro.ImportUtil.getCellValue(row, 15, pattern); //mtbcf杩愯姣�
+                    String repairable = com.zt.core.shiro.ImportUtil.getCellValue(row, 16, pattern); //鏄惁鍙淮淇�
+                    String repairDistribType = com.zt.core.shiro.ImportUtil.getCellValue(row, 17, pattern); //缁翠慨鍙戝竷绫诲瀷
+                    String repairMttcr = com.zt.core.shiro.ImportUtil.getCellValue(row, 18, pattern); //mttcr
+                    String repairMttcrOtherParams2 = com.zt.core.shiro.ImportUtil.getCellValue(row, 19, pattern); //mttcr鍏朵粬鍙傛暟2
+                    String repairMttcrOtherParams3 = com.zt.core.shiro.ImportUtil.getCellValue(row, 20, pattern); //mttcr鍏朵粬鍙傛暟3
 
                     if (StringUtils.isBlank(sb))
                         continue;
@@ -280,19 +245,25 @@
                         }
                     }
 
+                    Long paramId = null;
                     String sbPath = curXtName + "," + (StringUtils.isBlank(curFxtName) ? "" : curFxtName + ",") + sb;
                     if (modelMap.get(sbPath) == null) {
                         curSbId = UUIDUtil.generateId();
                         insertSb = true;
                     } else {
                         curSbId = modelMap.get(sbPath).getId();
+                        paramId = modelMap.get(sbPath).getParamId();
                     }
 
+                    if(StringUtils.isBlank(sameSbName)){
+                        sameSbName = sb;
+                    }
 
                     if (StringUtils.isEmpty(sb)) {
                         com.zt.life.util.ImportUtil.updateErrMap(errMap, "娌℃湁濉啓璁惧鍚嶇О", sheetName, row1);
                         continue;
                     }
+
                     //瀵煎叆鍨嬪彿浜у搧缁撴灉搴�
                     XhProductModel xhProductModel = new XhProductModel();
 
@@ -315,7 +286,6 @@
                         ParamData itemEntity = new ParamData();
                         itemEntity.setShipId(shipId);
                         itemEntity.setProductId(curXtId);
-                        itemEntity.setPageCode("expect");
                         paramDataService.insert(itemEntity);
                     }
 
@@ -335,30 +305,30 @@
                         ParamData itemEntity = new ParamData();
                         itemEntity.setShipId(shipId);
                         itemEntity.setProductId(curFxtId);
-                        itemEntity.setPageCode("expect");
                         paramDataService.insert(itemEntity);
                     }
 
+                    xhProductModel.setPid(curFxtId == null ? curXtId : curFxtId);
+                    xhProductModel.setId(curSbId);
+                    xhProductModel.setName(sb);
+                    xhProductModel.setSameSbName(sameSbName);
+                    xhProductModel.setEquipType(equipType);
+                    xhProductModel.setProductType("5");
+                    xhProductModel.setSort(Integer.valueOf(sort));
+                    defultImg = sysPictureBaseService.getDefaultImg(5).getId();
+                    xhProductModel.setOperatImg(defultImg);
+                    xhProductModel.setNamePath(sbPath);
                     if (insertSb) {
-                        xhProductModel.setPid(curFxtId == null ? curXtId : curFxtId);
-                        xhProductModel.setId(curSbId);
-                        xhProductModel.setName(sb);
-                        xhProductModel.setEquipType(equipType);
-                        xhProductModel.setProductType("5");
-                        xhProductModel.setSort(Integer.valueOf(sort));
-                        defultImg = sysPictureBaseService.getDefaultImg(5).getId();
-                        xhProductModel.setOperatImg(defultImg);
-                        xhProductModel.setNamePath(sbPath);
                         this.insert(xhProductModel);
+                    }else{
+                        this.update(xhProductModel);
                     }
-
 
                     //瀵煎叆棰勮鍙傛暟
                     ParamData itemEntity = new ParamData();
                     //缁戝畾璁惧ID
                     itemEntity.setShipId(shipId);
                     itemEntity.setProductId(curSbId);
-                    itemEntity.setPageCode("expect");
                     itemEntity.setReliabDistribType(reliabType.get(reliabDistribType));
                     itemEntity.setBasicJoinCompute(isOrNot.get(basicJoinCompute));
                     if (StringUtils.isNotBlank(basicMtbfRegulate)) {
@@ -400,10 +370,12 @@
                     if (StringUtils.isNotBlank(repairMttcrOtherParams3)) {
                         itemEntity.setRepairMttcrOtherParams3(Double.valueOf(repairMttcrOtherParams3));
                     }
-                    if (modelMap.get(sbPath) == null)
+                    if (modelMap.get(sbPath) == null) {
                         paramDataService.insert(itemEntity);
-                    else
+                    } else {
+                        itemEntity.setId(paramId);
                         paramDataService.update(itemEntity);
+                    }
                 }
             }
 
@@ -412,13 +384,7 @@
             ImportUtil.updateErrMap(errMap, "瀵煎叆寮傚父" + e.getMessage(), "", row1);
             //err++;
         }
-      /*  if (batchList.size() > 0 && err == 0) {
-            super.insertBatch(batchList, 100);
-            baseDao.updateOldId();
-        }
-        if (batchUpdateList.size() > 0) {
-            super.updateBatch(batchUpdateList, 100);
-        }*/
+
         Date nowDate = new Date();
         String msg = "浜у搧妯″瀷瀵煎叆鏃堕棿锛�" + CommonUtils.getDatePoor(nowDate, beginDate) + "\r\n";
         System.out.println(msg);
@@ -432,11 +398,23 @@
         return list;
     }
 
-    private void deleteByShipId(Long shipId) {
+    public void deleteByShipId(Long shipId) {
         baseDao.deleteByShipId(shipId);
     }
 
     private List<XhProductModel> getByShipId(Long shipId) {
         return baseDao.getByShipId(shipId);
     }
+
+    public void deleteByPid(Long id) {
+        baseDao.deleteByPid(id);
+    }
+
+    public Long[] getByPid(Long id) {
+        return baseDao.getByPid(id);
+    }
+
+    public void exportDataExcel(Long shipId) {
+        baseDao.getProductByShip(shipId);
+    }
 }

--
Gitblit v1.9.1