diff --git a/laws-modules/src/main/java/com/jero/modules/activiti/process/esAnnualInit/controller/ESAnnualInitController.java b/laws-modules/src/main/java/com/jero/modules/activiti/process/esAnnualInit/controller/ESAnnualInitController.java index 04e6bd81..99c5e156 100644 --- a/laws-modules/src/main/java/com/jero/modules/activiti/process/esAnnualInit/controller/ESAnnualInitController.java +++ b/laws-modules/src/main/java/com/jero/modules/activiti/process/esAnnualInit/controller/ESAnnualInitController.java @@ -153,9 +153,9 @@ public class ESAnnualInitController { @AutoLog(value = "企标年度制修订标准化发起流程-导入模板下载") public void templateDownload(HttpServletResponse response) { try { - ClassPathResource resource = new ClassPathResource("excelTemplate/es-annual-init.xlsx"); + ClassPathResource resource = new ClassPathResource("excelTemplate/年度制修订计划(标准化发起)导入模板.xls"); response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"); - response.setHeader(HttpHeaders.CONTENT_DISPOSITION, "attachment; filename=es-annual-init.xlsx"); + response.setHeader(HttpHeaders.CONTENT_DISPOSITION, "attachment; filename=年度制修订计划(标准化发起)导入模板.xls"); try (InputStream in = resource.getInputStream(); OutputStream out = response.getOutputStream()) { IOUtils.copy(in, out); diff --git a/laws-modules/src/main/java/com/jero/modules/activiti/process/esAnnualReport/controller/ESAnnualReportController.java b/laws-modules/src/main/java/com/jero/modules/activiti/process/esAnnualReport/controller/ESAnnualReportController.java index 254f9de4..bcc71c3c 100644 --- a/laws-modules/src/main/java/com/jero/modules/activiti/process/esAnnualReport/controller/ESAnnualReportController.java +++ b/laws-modules/src/main/java/com/jero/modules/activiti/process/esAnnualReport/controller/ESAnnualReportController.java @@ -65,9 +65,9 @@ public class ESAnnualReportController { @AutoLog(value = "企标年度制修订主动上报流程-导入模板下载") public void templateDownload(HttpServletResponse response) { try { - ClassPathResource resource = new ClassPathResource("excelTemplate/es-annual-report.xlsx"); + ClassPathResource resource = new ClassPathResource("excelTemplate/年度制修订计划(各部门主动上报)导入模板.xls"); response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"); - response.setHeader(HttpHeaders.CONTENT_DISPOSITION, "attachment; filename=es-annual-report.xlsx"); + response.setHeader(HttpHeaders.CONTENT_DISPOSITION, "attachment; filename=年度制修订计划(各部门主动上报)导入模板.xls"); try (InputStream in = resource.getInputStream(); OutputStream out = response.getOutputStream()) { IOUtils.copy(in, out); diff --git a/laws-modules/src/main/resources/excelTemplate/es-annual-init.xlsx b/laws-modules/src/main/resources/excelTemplate/es-annual-init.xlsx deleted file mode 100644 index c365c3d1..00000000 Binary files a/laws-modules/src/main/resources/excelTemplate/es-annual-init.xlsx and /dev/null differ diff --git a/laws-modules/src/main/resources/excelTemplate/es-annual-report.xlsx b/laws-modules/src/main/resources/excelTemplate/es-annual-report.xlsx deleted file mode 100644 index 1c3764f1..00000000 Binary files a/laws-modules/src/main/resources/excelTemplate/es-annual-report.xlsx and /dev/null differ diff --git a/laws-modules/src/main/resources/excelTemplate/年度制修订计划(各部门主动上报)导入模板.xls b/laws-modules/src/main/resources/excelTemplate/年度制修订计划(各部门主动上报)导入模板.xls new file mode 100644 index 00000000..f22389da Binary files /dev/null and b/laws-modules/src/main/resources/excelTemplate/年度制修订计划(各部门主动上报)导入模板.xls differ diff --git a/laws-modules/src/main/resources/excelTemplate/年度制修订计划(标准化发起)导入模板.xls b/laws-modules/src/main/resources/excelTemplate/年度制修订计划(标准化发起)导入模板.xls new file mode 100644 index 00000000..dce9dd3e Binary files /dev/null and b/laws-modules/src/main/resources/excelTemplate/年度制修订计划(标准化发起)导入模板.xls differ