From 08f1b1f1804a8bd833d42f257908d80e88387b55 Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期五, 14 三月 2025 11:27:47 +0800 Subject: [PATCH] 3.5增加登录验证、修改密码、人员列表调整 --- flower_city/src/main/java/com/dg/core/service/impl/TransactionEventImpl.java | 251 ++++++++++++++++++++++++++++---------------------- 1 files changed, 140 insertions(+), 111 deletions(-) diff --git a/flower_city/src/main/java/com/dg/core/service/impl/TransactionEventImpl.java b/flower_city/src/main/java/com/dg/core/service/impl/TransactionEventImpl.java index 8afa77d..d235426 100644 --- a/flower_city/src/main/java/com/dg/core/service/impl/TransactionEventImpl.java +++ b/flower_city/src/main/java/com/dg/core/service/impl/TransactionEventImpl.java @@ -12,9 +12,7 @@ import com.dg.core.service.ITransactionEventService; import org.apache.poi.hssf.usermodel.HSSFWorkbook; -import org.apache.poi.ss.usermodel.Row; -import org.apache.poi.ss.usermodel.Sheet; -import org.apache.poi.ss.usermodel.Workbook; +import org.apache.poi.ss.usermodel.*; import org.apache.poi.xssf.usermodel.XSSFWorkbook; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; @@ -46,6 +44,10 @@ @Resource private GuideRepairOrderMapper guideRepairOrderMapper; + + + @Resource + private AutomessagePolicyDocumentsMapper automessagePolicyDocumentsMapper; @Override public TransactionEvent selectConfigData(String Id, SysUser sysUser) { @@ -100,7 +102,7 @@ public int deleteConfigById(String Id) { List<GuideRepairOrder> guideRepairOrders = guideRepairOrderMapper .selectList(new QueryWrapper<GuideRepairOrder>().lambda().eq(GuideRepairOrder::getMatterId, Id)); - if (guideRepairOrders.size() == 0){ + if (guideRepairOrders.size() == 0) { return baseMapper.deleteConfigById(Id); } return 0; @@ -159,6 +161,8 @@ } queryResults.setTransactionEventList(searchesAssociate); queryResults.setKeywordEntityList(keywordMapper.selectByName(keyWord)); + queryResults.setAutomessagePolicyDocuments(automessagePolicyDocumentsMapper.selectConfigList(keyWord,"2",null,null)); + queryResults.setRegulations(automessagePolicyDocumentsMapper.selectConfigList(keyWord,"1",null,null)); return queryResults; } @@ -192,6 +196,8 @@ } recommendResult.setKeywordEntityList(keywordEntityList); List<OrganizationChartEntity> organizationChartEntities = organizationChartMapper.selectByKeyWord(keyWord); + recommendResult.setAutomessagePolicyDocuments(automessagePolicyDocumentsMapper.selectConfigList(keyWord,"2",null,null)); + recommendResult.setRegulations(automessagePolicyDocumentsMapper.selectConfigList(keyWord,"1",null,null)); recommendResult.setOrganizationChartEntityList(organizationChartEntities); return recommendResult; } @@ -251,20 +257,19 @@ @Override public List<TransactionEvent> selectList(String keyWord) { - if (keyWord!=null&&keyWord!=""){ - return baseMapper.selectList(new QueryWrapper<TransactionEvent>().lambda().like(TransactionEvent::getMatterName,keyWord)); - } - else { - return baseMapper.selectList(new QueryWrapper<TransactionEvent>().lambda()); + if (keyWord != null && keyWord != "") { + return baseMapper.selectList(new QueryWrapper<TransactionEvent>().lambda().like(TransactionEvent::getMatterName, keyWord)); + } else { + return baseMapper.selectList(new QueryWrapper<TransactionEvent>().lambda()); } } @Override - public boolean batchImport(String fileName, MultipartFile file) { + public Integer batchImport(String fileName, MultipartFile file) { boolean notNull = false; if (!fileName.matches("^.+\\.(?i)(xls)$") && !fileName.matches("^.+\\.(?i)(xlsx)$")) { - throw new RuntimeException("选择文件格式不正确,请下载模板上传"); + throw new RuntimeException("选择文件格式不正确,请下载模板上传"); } boolean isExcel2003 = true; if (fileName.matches("^.+\\.(?i)(xlsx)$")) { @@ -291,116 +296,140 @@ throw new RuntimeException(e); } } + Integer failNum = 0;//失败数量 // 获取excel的sheet页数 int numberOfSheets = wb.getNumberOfSheets(); - //获取excel字段名称进行比较 - Sheet sheetAt = wb.getSheetAt(0); - Row row1 = sheetAt.getRow(2); - TransactionEvent transactionEvent = baseMapper.selectOne(new QueryWrapper<TransactionEvent>().lambda().eq(TransactionEvent::getMatterName, row1.getCell(1).getStringCellValue())); - boolean isAdd=false; - if(transactionEvent==null){ - transactionEvent=new TransactionEvent(); - isAdd=true; - } - transactionEvent.setMatterName(row1.getCell(1).getStringCellValue()); - Row row2 = sheetAt.getRow(3); - transactionEvent.setSetGist("<p>"+row2.getCell(1).getStringCellValue()+"</p>"); - Row row3 = sheetAt.getRow(4); - Row row4 = sheetAt.getRow(5); - transactionEvent.setBasicInformation("<p> 事项名称:"+row1.getCell(1).getStringCellValue()+"<br />" - +row3.getCell(0).getStringCellValue()+":"+row3.getCell(1).getStringCellValue()+"<br />" - +row3.getCell(3).getStringCellValue()+":"+row3.getCell(4).getStringCellValue()+"<br />" - +row4.getCell(0).getStringCellValue()+":"+row4.getCell(1).getStringCellValue()+"</p>"); - int i=7; - String applicationMaterial="<p>"; - while (true){ - Row row = sheetAt.getRow(i); - if (row.getCell(0).getStringCellValue().equals("办理途径、条件和注意事项")){ - i=i+2; - break; + for (int j = 0; j < numberOfSheets; j++) { + int i = 2; + //获取excel字段名称进行比较 + Sheet sheetAt = wb.getSheetAt(j); + if(sheetAt.getRow(2)!=null){ + if (new DataFormatter().formatCellValue(sheetAt.getRow(1).getCell(1)).length()>=3){ + i--; } - applicationMaterial=applicationMaterial+"办理区域:"+row.getCell(0).getStringCellValue()+"<br />" - +"咨询电话:"+row.getCell(1).getStringCellValue()+"<br />" - +"办公地址:"+row.getCell(2).getStringCellValue()+"<br />" - +"办公时间:"+row.getCell(3).getStringCellValue()+"<br />"; - applicationMaterial=applicationMaterial+"<br />"; - i++; - } - applicationMaterial=applicationMaterial+"</p>"; - transactionEvent.setApplicationMaterial(applicationMaterial); - String acceptConditions="<p>"; - while (true){ - Row row = sheetAt.getRow(i); - if (row.getCell(0).getStringCellValue().equals("(二)网上申报")){ - i=i+1; - break; + Row row1 = sheetAt.getRow(i); + TransactionEvent transactionEvent = baseMapper.selectOne(new QueryWrapper<TransactionEvent>().lambda().eq(TransactionEvent::getMatterName, new DataFormatter().formatCellValue(row1.getCell(1)))); + boolean isAdd = false; + if (transactionEvent == null) { + transactionEvent = new TransactionEvent(); + isAdd = true; } - acceptConditions=acceptConditions+row.getCell(0).getStringCellValue()+" " - +row.getCell(1).getStringCellValue()+" " - +row.getCell(2).getStringCellValue()+" "; - acceptConditions=acceptConditions+"<br />"; - i++; - } - acceptConditions=acceptConditions+"</p>"; - transactionEvent.setAcceptConditions(acceptConditions); - String rates="<p>"; - while (true){ - Row row = sheetAt.getRow(i); - if (row.getCell(0).getStringCellValue().equals("(三)手机移动申报")){ - i=i+1; - break; + transactionEvent.setMatterName(new DataFormatter().formatCellValue(row1.getCell(1))); + Row row2 = sheetAt.getRow(i+1); + transactionEvent.setSetGist("<p>" + new DataFormatter().formatCellValue(row2.getCell(1)) + "</p>"); + Row row3 = sheetAt.getRow(i+2); + Row row4 = sheetAt.getRow(i+3); + transactionEvent.setBasicInformation("<p> 事项名称:" + new DataFormatter().formatCellValue(row1.getCell(1)) + "<br />" + + new DataFormatter().formatCellValue(row3.getCell(0)) + ":" + new DataFormatter().formatCellValue(row3.getCell(1))+ "<br />" + + new DataFormatter().formatCellValue(row3.getCell(3)) + ":" + new DataFormatter().formatCellValue(row3.getCell(4)) + "<br />" + + new DataFormatter().formatCellValue(row4.getCell(0)) + ":" + new DataFormatter().formatCellValue(row4.getCell(1)) + "</p>"); + i = i+5; + String applicationMaterial = "<p>"; + while (true) { + Row row = sheetAt.getRow(i); + if (new DataFormatter().formatCellValue(row.getCell(0)).equals("办理途径、条件和注意事项")) { + i = i + 2; + break; + } + applicationMaterial = applicationMaterial + "办理区域:" + new DataFormatter().formatCellValue(row.getCell(0)) + "<br />" + + "部门名称:" + new DataFormatter().formatCellValue(row.getCell(1)) + "<br />" + + "咨询电话:" + new DataFormatter().formatCellValue(row.getCell(2)) + "<br />" + + "办公地址:" + new DataFormatter().formatCellValue(row.getCell(3)) + "<br />" + + "办公时间:" + new DataFormatter().formatCellValue(row.getCell(4)) + "<br />"; + applicationMaterial = applicationMaterial + "<br />"; + i++; } - rates=rates+row.getCell(0).getStringCellValue()+" " - +row.getCell(1).getStringCellValue()+" " - +row.getCell(2).getStringCellValue()+" "; - rates=rates+"<br />"; - i++; - } - rates=rates+"</p>"; - transactionEvent.setRates(rates); - String transactionArea="<p>"; - while (true){ - Row row = sheetAt.getRow(i); - if (row.getCell(0).getStringCellValue().equals("(四)经营许可(备案)事项程序运行图谱(附电子版)")){ - i=i+1; - break; + applicationMaterial = applicationMaterial + "</p>"; + transactionEvent.setApplicationMaterial(applicationMaterial); + String acceptConditions = "<p>"; + while (true) { + Row row = sheetAt.getRow(i); + if (new DataFormatter().formatCellValue(row.getCell(0)).equals("(二)网上申报")) { + i = i + 1; + break; + } + acceptConditions = acceptConditions + new DataFormatter().formatCellValue(row.getCell(0)) + " " + +new DataFormatter().formatCellValue( row.getCell(1)) + " " + + new DataFormatter().formatCellValue(row.getCell(2)) + " " + +new DataFormatter().formatCellValue( row.getCell(3)) + " " + + new DataFormatter().formatCellValue(row.getCell(4)) + " "; + acceptConditions = acceptConditions + "<br />"; + i++; } - transactionArea=transactionArea+row.getCell(0).getStringCellValue()+" " - +row.getCell(1).getStringCellValue()+" " - +row.getCell(2).getStringCellValue()+" "; - transactionArea=transactionArea+"<br />"; - i++; - } - transactionArea=transactionArea+"</p>"; - transactionEvent.setTransactionArea(transactionArea); - String handlingProcedures="<p>"; - while (true){ - Row row = sheetAt.getRow(i); - if (row.getCell(0).getStringCellValue().equals("(五)经营许可(备案)事项实施内容一览表(附电子版)")){ - i=i+1; - break; + acceptConditions = acceptConditions + "</p>"; + transactionEvent.setAcceptConditions(acceptConditions); + String rates = "<p>"; + while (true) { + Row row = sheetAt.getRow(i); + if (new DataFormatter().formatCellValue(row.getCell(0)).equals("(三)手机移动申报")) { + i = i + 1; + break; + } + rates = rates + new DataFormatter().formatCellValue(row.getCell(0)) + " " + + new DataFormatter().formatCellValue(row.getCell(1)) + " " + + new DataFormatter().formatCellValue(row.getCell(2)) + " " + +new DataFormatter().formatCellValue( row.getCell(3)) + " " + + new DataFormatter().formatCellValue(row.getCell(4)) + " "; + rates = rates + "<br />"; + i++; } - handlingProcedures=handlingProcedures+row.getCell(0).getStringCellValue()+" " - +row.getCell(1).getStringCellValue()+" " - +row.getCell(2).getStringCellValue()+" "; - handlingProcedures=handlingProcedures+"<br />"; - i++; + rates = rates + "</p>"; + transactionEvent.setRates(rates); + String transactionArea = "<p>"; + while (true) { + Row row = sheetAt.getRow(i); + if (new DataFormatter().formatCellValue(row.getCell(0)).equals("(四)经营许可(备案)事项程序运行图谱(附电子版)")) { + i = i + 1; + break; + } + transactionArea = transactionArea + new DataFormatter().formatCellValue(row.getCell(0)) + " " + + new DataFormatter().formatCellValue(row.getCell(1)) + " " + + new DataFormatter().formatCellValue(row.getCell(2)) + " " + +new DataFormatter().formatCellValue( row.getCell(3)) + " " + + new DataFormatter().formatCellValue(row.getCell(4)) + " "; + transactionArea = transactionArea + "<br />"; + i++; + } + transactionArea = transactionArea + "</p>"; + transactionEvent.setTransactionArea(transactionArea); + String handlingProcedures = "<p>"; + while (true) { + Row row = sheetAt.getRow(i); + if (new DataFormatter().formatCellValue(row.getCell(0)).equals("(五)经营许可(备案)事项实施内容一览表(附电子版)")) { + i = i + 1; + break; + } + handlingProcedures = handlingProcedures + new DataFormatter().formatCellValue(row.getCell(0)) + " " + + new DataFormatter().formatCellValue(row.getCell(1)) + " " + + new DataFormatter().formatCellValue(row.getCell(2)) + " " + +new DataFormatter().formatCellValue( row.getCell(3)) + " " + + new DataFormatter().formatCellValue(row.getCell(4)) + " "; + handlingProcedures = handlingProcedures + "<br />"; + i++; + } + handlingProcedures = handlingProcedures + "</p>"; + transactionEvent.setHandlingProcedures(handlingProcedures); + int ans; + if (isAdd) { + ans = baseMapper.insert(transactionEvent); + } else { + ans = baseMapper.updateById(transactionEvent); + } + if (ans <= 0) { + failNum++; + } + } + } - handlingProcedures=handlingProcedures+"</p>"; - transactionEvent.setHandlingProcedures(handlingProcedures); - int ans; - if (isAdd){ - ans= baseMapper.insert(transactionEvent); - }else { - ans =baseMapper.updateById(transactionEvent); + if (failNum == 0) {// + return 3;//全部导入成功 + } else if (failNum < numberOfSheets) { + return 2;//部分导入成功 + } else if (failNum.equals(numberOfSheets)) { + return 0;//导入失败 } - if (ans>0){ - return true; - } - return false; + return 0; } - - } -- Gitblit v1.7.1