From 4232d479f86ab45d4fdc6510eb7c6c4c9da69674 Mon Sep 17 00:00:00 2001
From: xiejun <xiejun@vci-tech.com>
Date: 星期五, 30 八月 2024 14:41:54 +0800
Subject: [PATCH] 表单表格导入功能添加

---
 Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/impl/OsPortalVIServiceImpl.java |  167 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 167 insertions(+), 0 deletions(-)

diff --git a/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/impl/OsPortalVIServiceImpl.java b/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/impl/OsPortalVIServiceImpl.java
index b8a46a6..4259cf7 100644
--- a/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/impl/OsPortalVIServiceImpl.java
+++ b/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/impl/OsPortalVIServiceImpl.java
@@ -4,6 +4,7 @@
 import cn.hutool.core.util.ZipUtil;
 import com.vci.bo.ItemSeniorQueryBO;
 import com.vci.common.utility.ObjectUtility;
+import com.vci.constant.FrameWorkLangCodeConstant;
 import com.vci.corba.common.PLException;
 import com.vci.corba.omd.qtm.QTD;
 import com.vci.corba.omd.qtm.QTInfo;
@@ -12,6 +13,9 @@
 import com.vci.dto.*;
 import com.vci.model.*;
 import com.vci.pagemodel.*;
+import com.vci.po.PortalVIPO;
+import com.vci.po.QTDPO;
+import com.vci.starter.poi.bo.ReadExcelOption;
 import com.vci.starter.poi.bo.WriteExcelData;
 import com.vci.starter.poi.bo.WriteExcelOption;
 import com.vci.starter.poi.util.ExcelUtil;
@@ -26,6 +30,7 @@
 import com.vci.web.enumpck.ItemTypeEnum;
 import com.vci.web.enumpck.PortalVIType;
 import com.vci.web.enumpck.PortalVITypeFlag;
+import com.vci.web.other.BtmQTExportData;
 import com.vci.web.service.OsAttributeServiceI;
 import com.vci.web.service.OsPortalVIServiceI;
 import com.vci.web.service.OsQuereyTemplateServiceI;
@@ -39,6 +44,7 @@
 import org.springframework.context.annotation.Lazy;
 import org.springframework.stereotype.Service;
 import org.springframework.util.CollectionUtils;
+import org.springframework.web.multipart.MultipartFile;
 
 import java.io.*;
 import java.util.*;
@@ -352,6 +358,21 @@
                     String prmText=UITools.getPRMText(prmDOO2VIS(portalVIDTO.getPrm(),portalVIDTO.getViType()));
                     String prmTextFileName=	ObjectUtility.getNewObjectID36() + ".txt";
                     String prmTextFileNameAllName = xfileName + "." + prmTextFileName;
+                    if (portalVIDTO.getViType() == PortalVIType.Table.getIntVal()) {//濡傛灉瀵煎叆鐨則able锛屽垯闇�瑕佹牎楠岃〃鏍煎叧鑱旂殑琛ㄥ崟鏄惁瀛樺湪锛屽鏋滀笉瀛樺湪鍒欏湪execl涓槸鍚﹀瓨鍦�
+                        PortalVI[] pvs = platformClientUtil.getPortalService().getPortalVIArrayByTypeName(portalVIDTO.getTypeName());
+                        PRMDTO prmdto=   portalVIDTO.getPrm();
+                        List<PRMItemDTO> prmItemDTOS=   prmdto.getPrmItemList();
+                        if (!CollectionUtils.isEmpty(Arrays.asList(pvs))) {
+                            Optional.ofNullable(prmItemDTOS).orElseGet(()->new ArrayList<>()).stream().forEach(prmItemDTO -> {
+                                Arrays.stream(pvs).forEach(pv -> {
+                                    if (prmItemDTO.getItemInObj().equals(pv.typeName + ":" + pv.viName)) {
+                                        prmItemDTO.setItemInObj(pv.id);
+                                    }
+                                });
+
+                            });
+                        }
+                    }
                     writeDataToFile(defaultTempFolder,prmTextFileNameAllName,prmText);
                     rowDataList.add(new WriteExcelData(rowIndex[0], 4,prmTextFileName));//閰嶇疆鏂囨湰
 
@@ -420,6 +441,152 @@
         return zip.getAbsoluteFile().getAbsolutePath();
     }
 
+    @Override
+    public BaseResult importData(File file)throws Throwable{
+        if (file == null) {
+            return BaseResult.fail(FrameWorkLangCodeConstant.IMPORT_FAIL, new String[]{"鏃犲鍏ョ殑鏂囦欢"});
+        }
+        try {
+            File unzip = ZipUtil.unzip(file);
+            String filePath=unzip.getAbsolutePath() + File.separator + "export.xls";
+            File btmExcel = new File(filePath);
+            List<PortalVIPO> portalVIPOList=new ArrayList<>();
+            List<QTDPO> QTDPOPOList=new ArrayList<>();
+            try {
+                ReadExcelOption PortalVIPOReadExcelOption=new ReadExcelOption();
+                PortalVIPOReadExcelOption.setSheetName("portalvi");
+                PortalVIPOReadExcelOption.setSheetIndex(0);
+                portalVIPOList = ExcelUtil.readDataObjectFromExcel(btmExcel, PortalVIPO.class,PortalVIPOReadExcelOption);
+                //浠巈xecl鑾峰彇鏌ヨ妯℃澘瀹氫箟.
+               /* ReadExcelOption QTDPOReadExcelOption=new ReadExcelOption();
+                QTDPOReadExcelOption.setSheetName("QTD");
+                QTDPOReadExcelOption.setSheetIndex(1);
+                QTDPOPOList = ExcelUtil.readDataObjectFromExcel(btmExcel, QTDPO.class,QTDPOReadExcelOption);*/
+            }catch (VciBaseException e){
+                throw  new Throwable("璇诲彇execl鏁版嵁鍑洪敊锛�"+e.getMessage());
+            }
+            List<PortalVI> portalVIList=new ArrayList<>();
+            if(!CollectionUtils.isEmpty(portalVIPOList)){
+                Map<String,String>formNameMap=new HashMap<>();
+                StringBuffer checkInObj=new StringBuffer();
+                StringBuffer checkPortalVI=new StringBuffer();
+                List<String> sjkExitsList=new ArrayList<>();
+                portalVIPOList.stream().forEach(portalVIPO -> {
+                    PortalVI portalVI=new PortalVI();
+                    String ploid = ObjectUtility.getNewObjectID36();
+                    portalVI.id=ploid;
+                    portalVI.viName=portalVIPO.getViName();
+                    portalVI.typeName=portalVIPO.getTypeName();
+                    portalVI.viType=PortalVIType.getByLabel(portalVIPO.getViTypeText()).getIntVal();
+                    portalVI.typeFlag=PortalVITypeFlag.getByLabel(portalVIPO.getTypeFlagText()).getIntVal();
+                    String fileName= portalVIPO.getPrmFileName();
+                    String prmStr = readLines(filePath+"."+fileName);
+                    try {
+                        PortalVI[] pvs = platformClientUtil.getPortalService().getPortalVIArrayByTypeName(portalVI.typeName);
+                        if (portalVI.viType == PortalVIType.Table.getIntVal()) {//濡傛灉瀵煎叆鐨則able锛屽垯闇�瑕佹牎楠岃〃鏍煎叧鑱旂殑琛ㄥ崟鏄惁瀛樺湪锛屽鏋滀笉瀛樺湪鍒欏湪execl涓槸鍚﹀瓨鍦�
+                            formNameMap.put(portalVI.typeName + ":" + portalVI.viName, ploid);
+                            PRMDO prmObj = UITools.getPRM(prmStr);
+                            List<PRMItemDO> prmItemList = prmObj.getPrmItemList();
+
+                            if (!CollectionUtils.isEmpty(prmItemList)) {
+                                prmItemList.stream().forEach(prmItemDO -> {
+                                    if (!CollectionUtils.isEmpty(Arrays.asList(pvs))) {
+                                        Arrays.stream(pvs).forEach(pv -> {
+                                            if (prmItemDO.getItemInObj().equals(portalVI.typeName + ":" + pv.viName)) {
+                                                prmItemDO.setItemInObj(pv.id);
+                                            }
+                                        });
+                                    } else {
+                                        if (formNameMap.containsKey(prmItemDO.getItemInObj())) {
+                                            prmItemDO.setItemInObj(formNameMap.get(prmItemDO.getItemInObj()));
+                                        } else {
+                                            if (!checkInObj.toString().contains(prmItemDO.getItemInObj())) {
+                                                String[] split = prmItemDO.getItemInObj().split(":");
+                                                checkInObj.append(split[1]).append(",");
+                                            }
+                                        }
+                                    }
+
+                                });
+                            }
+                            prmStr = UITools.getPRMText(prmObj);
+                        }
+                        portalVI.prm = prmStr.trim();
+                        //鏍¢獙琛ㄥ崟鏄惁瀛樺湪
+                        if (!CollectionUtils.isEmpty(Arrays.asList(pvs))) {
+                            Arrays.stream(pvs).forEach(pv -> {
+                                if (pv.viName.equals(portalVI.viName)) {
+                                    checkPortalVI.append(portalVI.viName).append(",");
+                                }
+                            });
+                        }
+                        //鏍¢獙灞炴�ф槸鍚︽纭�
+                        List<OsAttributeVO> osAttributeVOList = osAttributeService.getOsAttributeVOSByBtName(portalVI.typeName, portalVI.typeFlag);
+                        if (!CollectionUtils.isEmpty(osAttributeVOList)) {
+                            List<String> filedList = osAttributeVOList.stream().map(OsAttributeVO::getId).collect(Collectors.toList());
+                            List<String> attributeList = VciBaseUtil.str2List(portalVIPO.getAttributeKey());
+                            //鏁版嵁搴撲笉瀛樺湪
+                            List<String> sjkExitsLists = Optional.ofNullable(attributeList).orElseGet(() -> new ArrayList<>()).stream().filter(s -> !attributeList.contains(s)).collect(Collectors.toList());
+                            sjkExitsList.addAll(sjkExitsLists);
+                        }
+                    }catch (Throwable e){
+                        e.printStackTrace();
+                    }
+                    portalVIList.add(portalVI);
+                    if(StringUtils.isNotBlank(portalVIPO.getQtName())&&StringUtils.isNotBlank(portalVIPO.getQtNameFile())) {
+                        QTInfo qt = new QTInfo();
+                        String qtText = readLines(filePath + "." + portalVIPO.getQtNameFile());
+                        qt.qtText=qtText;
+                        qt.qtName = portalVIPO.getQtName();
+                        qt.btmName=portalVIPO.getQtName();
+                        QTInfo qt2 = null;
+                        try {
+                            qt2 = platformClientUtil.getQTDService().getQT(qt.qtName);
+                            if (qt2 == null) {
+                                platformClientUtil.getQTDService().saveQT(qt);
+                            }
+                        } catch (PLException e) {
+                            e.printStackTrace();
+                        }
+
+                    }
+                });
+                if (checkInObj.length() > 0) {
+                    throw  new Throwable( checkInObj.toString() + "琛ㄥ崟涓嶅瓨鍦紒");
+                }
+                if (checkPortalVI.length() > 0) {
+                    throw  new Throwable( checkInObj.toString() + "鍚嶇О宸茬粡瀛樺湪锛�");
+                }
+                if(sjkExitsList.size()>0){
+                    throw  new Throwable( checkInObj.toString() + "灞炴�у湪绫诲瀷涓笉瀛樺湪锛�");
+                }
+                for (PortalVI pvi : portalVIList) {
+                    platformClientUtil.getPortalService().savePortalVI(pvi);
+                }
+            }
+        }catch (Throwable e){
+          //  throw new Throwable("瀵煎叆澶辫触锛�"+e.getMessage());
+           return BaseResult.fail("瀵煎叆澶辫触锛�"+e.getMessage());
+        }
+        return BaseResult.success("瀵煎叆鎴愬姛");
+    }
+    private String readLines(String filePath){
+        StringBuffer sb=new StringBuffer();
+        FileInputStream prmFile=null;
+        try {
+            prmFile = new FileInputStream(filePath);
+            List<String>  prm= IOUtils.readLines(prmFile,"UTF-8");
+            prm.stream().forEach(s -> {
+                sb.append(s);
+            });
+        } catch (IOException e) {
+            IOUtils.closeQuietly(prmFile);
+            e.printStackTrace();
+        }finally {
+            IOUtils.closeQuietly(prmFile);
+        }
+        return sb.toString();
+    }
     /**
      * 鎷疯礉鏁版嵁鍒皐ord妯℃澘涓�
      * @param fileName 瑕佸啓鍏ョ殑鏁版嵁

--
Gitblit v1.9.3