Browse Source

202503062_sun

15143018065 4 weeks ago
parent
commit
2438ea58c0

+ 16 - 1
ruoyi-modules/mz-gljt/pom.xml

@@ -122,14 +122,29 @@
                     </execution>
                 </executions>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-resources-plugin</artifactId>
+                <configuration>
+                    <delimiters>
+                        <delimiter>@</delimiter>
+                    </delimiters>
+                    <useDefaultDelimiters>false</useDefaultDelimiters>
+                    <nonFilteredFileExtensions>
+                        <nonFilteredFileExtension>xlsx</nonFilteredFileExtension>
+                    </nonFilteredFileExtensions>
+                </configuration>
+            </plugin>
         </plugins>
         <resources>
             <resource>
                 <directory>src/main/resources</directory>
                 <!--开启过滤,用指定的参数替换directory下的文件中的参数-->
                 <filtering>true</filtering>
+                <includes>
+                    <include>**/*</include>
+                </includes>
             </resource>
         </resources>
     </build>
-
 </project>

+ 20 - 0
ruoyi-modules/mz-gljt/src/main/java/com/ruoyi/gljt/controller/GljtSqLrController.java

@@ -2,6 +2,7 @@ package com.ruoyi.gljt.controller;
 
 import com.alibaba.fastjson.JSON;
 import com.alibaba.fastjson.JSONArray;
+import com.ruoyi.common.core.exception.ServiceException;
 import com.ruoyi.common.core.utils.poi.ExcelUtil;
 import com.ruoyi.common.core.utils.uuid.IdUtils;
 import com.ruoyi.common.core.web.controller.BaseController;
@@ -21,7 +22,9 @@ import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.validation.annotation.Validated;
 import org.springframework.web.bind.annotation.*;
 
+import javax.servlet.ServletOutputStream;
 import javax.servlet.http.HttpServletResponse;
+import java.io.IOException;
 import java.util.List;
 
 /**
@@ -96,6 +99,23 @@ public class GljtSqLrController extends BaseController
         return AjaxResult.success(gljtSqLrService.exportGljtLr(gljtSqLr));
     }
 
+    @PostMapping("/exportGljtLrExcel")
+    public void exportGljtLrExcel(GljtSqLr gljtSqLr, HttpServletResponse response) {
+        try {
+            byte[] excelData = gljtSqLrService.exportExcelData(gljtSqLr);
+
+            response.setContentType("application/vnd.ms-excel");
+            response.setCharacterEncoding("utf-8");
+            response.setHeader("Content-disposition", "attachment;filename=gljt_export.xlsx");
+
+            ServletOutputStream outputStream = response.getOutputStream();
+            outputStream.write(excelData);
+            outputStream.close();
+        } catch (IOException e) {
+            throw new ServiceException("导出Excel失败:" + e.getMessage());
+        }
+    }
+
     /**
      * 获取高龄津贴申请老人信息详细信息
      */

+ 3 - 0
ruoyi-modules/mz-gljt/src/main/java/com/ruoyi/gljt/domain/GljtSqBf.java

@@ -411,4 +411,7 @@ public class GljtSqBf extends BaseEntity
 
     @Size(max = 200, message = "{补发原因}")
     private String bfyy2;
+
+    @TableField(exist = false)
+    private String lrzt;
 }

+ 4 - 0
ruoyi-modules/mz-gljt/src/main/java/com/ruoyi/gljt/domain/GljtSqLrExport.java

@@ -45,6 +45,10 @@ public class GljtSqLrExport extends BaseEntity
     @Size(min = 1, max = 12, message = "{行政区划}")
     private String xzqh;
 
+    @Excel(name = "序号")
+    @TableField(exist = false)
+    private String xh;
+
     @Excel(name = "登记时间")
     @TableField(exist = false)
     private String djsj;

+ 2 - 0
ruoyi-modules/mz-gljt/src/main/java/com/ruoyi/gljt/service/IGljtSqLrService.java

@@ -31,6 +31,8 @@ public interface IGljtSqLrService
 
     public List<GljtSqLrExport> exportGljtLr(GljtSqLr gljtSqLr);
 
+    public byte[] exportExcelData(GljtSqLr gljtSqLr);
+
     public GljtSqLr getLrByZjhm(GljtSqLr gljtSqLr);
 
     /**

+ 6 - 0
ruoyi-modules/mz-gljt/src/main/java/com/ruoyi/gljt/service/impl/GljtSqBfServiceImpl.java

@@ -68,6 +68,12 @@ public class GljtSqBfServiceImpl implements IGljtSqBfService
     {
         GljtSqBf res = gljtSqBfMapper.selectById(id);
         EncryptionUtils.decryptForPlaintext(res);
+        if (!ObjectUtils.isEmpty(res)) {
+            GljtSqLr lr = gljtSqLrMapper.selectById(res.getLrId());
+            if (!ObjectUtils.isEmpty(lr)) {
+                res.setLrzt(lr.getStatus());
+            }
+        }
         res.setXzqhName(SysDeptJlUtils.getDeptCache(res.getXzqh()));
         res.setXzqhCode(sysDeptJlMapper.getXzqhCodes(res.getXzqh()));
         res.setPc(GljtSqUtils.getBtbzByCsrq(res.getCsrq(), res.getIsdb()));

+ 16 - 4
ruoyi-modules/mz-gljt/src/main/java/com/ruoyi/gljt/service/impl/GljtSqLrServiceImpl.java

@@ -18,6 +18,7 @@ import com.ruoyi.gljt.mapper.GljtJkzkMapper;
 import com.ruoyi.gljt.mapper.GljtSqLrExportMapper;
 import com.ruoyi.gljt.mapper.GljtSqLrMapper;
 import com.ruoyi.gljt.service.IGljtSqLrService;
+import com.ruoyi.gljt.utils.ExcelTemplateUtils;
 import com.ruoyi.gljt.utils.GljtSqUtils;
 import com.ruoyi.system.api.domain.SysDictData;
 import com.ruoyi.system.api.enums.GljtLrStatus;
@@ -28,6 +29,7 @@ import org.apache.commons.lang3.ObjectUtils;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
 
+import java.io.File;
 import java.math.BigDecimal;
 import java.math.RoundingMode;
 import java.text.SimpleDateFormat;
@@ -159,19 +161,17 @@ public class GljtSqLrServiceImpl implements IGljtSqLrService
                 .likeRight(GljtSqLrExport::getXzqh, SubCodeUtil.code2Short(filter)).in(GljtSqLrExport::getStatus, lrStatus)
                 .orderByDesc(GljtSqLrExport::getCreateTimeStr);
         List<GljtSqLrExport> res = gljtSqLrExportMapper.selectList(lqw);
-        String en = SecurityUtils.sm4encrypt_ECB("33555573BDFADC45", "张福䘵");
-        System.out.println("33555573BDFADC45");
-        System.out.println(en);
-        System.out.println(SecurityUtils.sm4decrypt_ECB("33555573BDFADC45", en));
         List<SysDictData> mzList = DictUtils.getDictCache("C0009");
         List<SysDictData> jkzkList = DictUtils.getDictCache("GL021");
         if (CollectionUtils.isEmpty(mzList) || CollectionUtils.isEmpty(jkzkList)) {
             throw new ServiceException("请尝试刷新缓存,当前缓存内未取到相应字典");
         }
         GljtXmpz xmpz = gljtSqUtils.getXmpz();
+        int xh = 1;
         for (GljtSqLrExport r: res) {
             EncryptionUtils.decryptForPlaintext(r);
             try {
+                r.setXh(String.valueOf(xh));
                 r.setDjsj(parseStr2Str(DateUtils.YYYY_MM_DD, StringUtils.isNotEmpty(r.getCreateTimeStr()) ? r.getCreateTimeStr().substring(0, 8) : "20200101"));
                 if (StringUtils.equals(r.getXb(), "1")) {
                     r.setXb("1|男");
@@ -185,11 +185,23 @@ public class GljtSqLrServiceImpl implements IGljtSqLrService
                 r.setXsbtlb("1|高龄津贴");
                 r.setSndj(r.getSndj() + "|" + jkzkList.stream().filter(j -> StringUtils.equals(j.getDictValue(), r.getSndj())).findFirst().orElse(new SysDictData()).getDictLabel());
                 r.setYbzje(setYbzje(xmpz, r.getPc()));
+                xh ++;
             } catch (Exception ignored) {}
         }
         return res;
     }
 
+    @Override
+    public byte[] exportExcelData(GljtSqLr gljtSqLr) {
+        String userDir = System.getProperty("user.dir");
+        File templateFile = new File(userDir + "/templates/exportGljtLr.xlsx");
+        if (!templateFile.exists()) {
+           throw new ServiceException("模板文件不存在");
+        }
+        List<GljtSqLrExport> exportList = exportGljtLr(gljtSqLr);
+        return ExcelTemplateUtils.exportExcel(exportList, templateFile);
+    }
+
     private String setYbzje(GljtXmpz pz, String pc) {
         String res = "";
         if (StringUtils.equals(pc, "0")) res = pz.getBtzjE();

+ 100 - 0
ruoyi-modules/mz-gljt/src/main/java/com/ruoyi/gljt/utils/ExcelTemplateUtils.java

@@ -0,0 +1,100 @@
+package com.ruoyi.gljt.utils;
+
+import com.ruoyi.common.core.exception.ServiceException;
+import com.ruoyi.gljt.domain.GljtSqLrExport;
+import org.apache.poi.ss.usermodel.*;
+
+import java.io.*;
+import java.util.List;
+
+public class ExcelTemplateUtils {
+
+    /**
+     * 将数据写入Excel模板
+     *
+     * @param dataList 导出数据列表
+     * @param templateFile 模板路径 (例如: "templates/gljt_export_template.xlsx")
+     * @return Excel文件的字节数组
+     */
+    public static byte[] exportExcel(List<GljtSqLrExport> dataList, File templateFile) {
+        try {
+            try {
+                FileInputStream fis = new FileInputStream(templateFile);
+                Workbook workbook = WorkbookFactory.create(fis);
+
+                Sheet sheet = workbook.getSheetAt(0);
+                CellStyle style = getTemplateStyle(workbook);
+
+                // 从第二行开始写入数据
+                int rowIndex = 1;
+                for (GljtSqLrExport data : dataList) {
+                    Row row = sheet.createRow(rowIndex++);
+                    fillRowData(row, data, style);
+                }
+
+                // 调整列宽
+                adjustColumnWidth(sheet);
+
+                // 写入到字节数组
+                try (ByteArrayOutputStream bos = new ByteArrayOutputStream()) {
+                    workbook.write(bos);
+                    return bos.toByteArray();
+                }
+            }catch (FileNotFoundException e) {
+                throw new ServiceException("未找到导出模板文件: " + e.getMessage());
+            }
+        } catch (IOException e) {
+            throw new ServiceException("导出Excel失败: " + e.getMessage());
+        }
+    }
+
+    private static void fillRowData(Row row, GljtSqLrExport data, CellStyle style) {
+        int colIndex = 0;
+
+        // 按照模板顺序填充数据
+        createCell(row, colIndex++, data.getXh(), style);            // 序号
+        createCell(row, colIndex++, data.getDjsj(), style);            // 登记时间
+        createCell(row, colIndex++, data.getSqrZjhm(), style);        // 身份证号
+        createCell(row, colIndex++, data.getSqrXm(), style);          // 姓名
+        createCell(row, colIndex++, data.getXb(), style);             // 性别
+
+        createCell(row, colIndex++, data.getAge(), style);            // 年龄
+        createCell(row, colIndex++, data.getMz(), style);             // 民族
+        createCell(row, colIndex++, data.getHjdz(), style);             // 住址
+        createCell(row, colIndex++, data.getYb(), style);             // 邮政编码
+        createCell(row, colIndex++, data.getSqrLxdh(), style);             // 电话
+        createCell(row, colIndex++, data.getXsbtlb(), style);         // 补贴类别
+        createCell(row, colIndex++, data.getSndj(), style);           // 健康状况
+        createCell(row, colIndex++, data.getYbzje(), style);          // 月补助金额
+        Cell formulaCell = row.createCell(15);
+        formulaCell.setCellStyle(style);
+        formulaCell.setCellFormula("IF(AND(LEN(C2)=18,--MID(\"10X98765432\",MOD(SUMPRODUCT(MID(C2,ROW(INDIRECT(\"1:17\")),1)*{7;9;10;5;8;4;2;1;6;3;7;9;10;5;8;4;2}),11)+1,1)=RIGHT(C2,1)*1),\"有效\",\"无效\")");
+    }
+
+    private static void createCell(Row row, int colIndex, String value, CellStyle style) {
+        Cell cell = row.createCell(colIndex);
+        cell.setCellValue(value != null ? value : "");
+        if (style != null) {
+            cell.setCellStyle(style);
+        }
+    }
+
+    private static CellStyle getTemplateStyle(Workbook workbook) {
+        CellStyle style = workbook.createCellStyle();
+        style.setAlignment(HorizontalAlignment.CENTER);
+        style.setVerticalAlignment(VerticalAlignment.CENTER);
+        style.setBorderTop(BorderStyle.THIN);
+        style.setBorderBottom(BorderStyle.THIN);
+        style.setBorderLeft(BorderStyle.THIN);
+        style.setBorderRight(BorderStyle.THIN);
+        return style;
+    }
+
+    private static void adjustColumnWidth(Sheet sheet) {
+        for (int i = 0; i < 20; i++) {  // 假设最多20列
+            sheet.autoSizeColumn(i);
+            int width = sheet.getColumnWidth(i);
+            sheet.setColumnWidth(i, width + 500);
+        }
+    }
+}

BIN
ruoyi-modules/mz-gljt/src/main/resources/templates/exportGljtLr.xlsx


BIN
templates/exportGljtLr.xlsx