sgj
2026-02-26 6c955bced91e431cb6dbd255257d3dafd1dc6cf2
fzzy-igdss-web/src/main/java/com/fzzy/common/manager/ExportManager.java
@@ -91,4 +91,23 @@
        }
    }
    /**
     * 渲染模板保存并下载
     *
     * @param response
     */
    public void downloadInoutExcel(HttpServletResponse response) {
        try {
            String savePath = fileService.getFileSavePath("TEMPLATE");
            String templateName = "出入库数据模板.xlsx";
            //下载文档
            WordUtil.download(savePath, templateName, response);
        } catch (Exception e) {
            log.error("下载文件失败", e);
        }
    }
}