diff --git a/src/main/java/com/chinaunicom/mall/ebtp/extend/export/service/impl/JudgesSignImpl.java b/src/main/java/com/chinaunicom/mall/ebtp/extend/export/service/impl/JudgesSignImpl.java index 375ca98..d5999c5 100644 --- a/src/main/java/com/chinaunicom/mall/ebtp/extend/export/service/impl/JudgesSignImpl.java +++ b/src/main/java/com/chinaunicom/mall/ebtp/extend/export/service/impl/JudgesSignImpl.java @@ -25,9 +25,9 @@ import java.util.Map; /** - * 评标委员会签字表 + * 评审专家签到 */ -@Service("judgesSign") +@Service("judgesSignIn") @Slf4j public class JudgesSignImpl implements ExportService { @@ -47,13 +47,13 @@ public class JudgesSignImpl implements ExportService { */ @Override public void doExport(ExportParam param, HttpServletRequest request, HttpServletResponse response) { - log.info("评标委员会签字表,ExportParam = {}", JsonUtils.objectToJson(param)); + log.info("评审专家签到,ExportParam = {}", JsonUtils.objectToJson(param)); //项目和招标名称数据 ProjectSectionVO section = commonFeignService.projectGetSectionById(param.getSectionId()); - log.info("评标委员会签字表 {},查询项目信息 = {}", param.getAssessRoomId(), JsonUtils.objectToJson(section)); + log.info("评审专家签到 {},查询项目信息 = {}", param.getAssessRoomId(), JsonUtils.objectToJson(section)); //专家人员数据 List list = commonFeignService.rsmsQueryReportPrintByRoomId(param.getAssessRoomId()); - log.info("评标委员会签字表 {},查询专家人员数据 = {}", param.getAssessRoomId(), JsonUtils.objectToJson(list)); + log.info("评审专家签到 {},查询专家人员数据 = {}", param.getAssessRoomId(), JsonUtils.objectToJson(list)); ArrayList> maps = new ArrayList<>(); for (int i = 0; i < list.size(); i++) { @@ -80,7 +80,7 @@ public class JudgesSignImpl implements ExportService { XWPFTemplate template = XWPFTemplate.compile(file, config).render(all); //导出的表格名称 - String dictName = commonFeignService.exportDictName(param.getId(), "评标委员会签字表") + ".docx"; + String dictName = commonFeignService.exportDictName(param.getId(), "评审专家签到表") + ".docx"; String fileName = new String(dictName.getBytes(StandardCharsets.UTF_8), StandardCharsets.ISO_8859_1); this.write(template, fileName, response); diff --git a/src/main/java/com/chinaunicom/mall/ebtp/extend/export/service/impl/JudgesSignInImpl.java b/src/main/java/com/chinaunicom/mall/ebtp/extend/export/service/impl/JudgesSignInImpl.java index 602239e..4aa9075 100644 --- a/src/main/java/com/chinaunicom/mall/ebtp/extend/export/service/impl/JudgesSignInImpl.java +++ b/src/main/java/com/chinaunicom/mall/ebtp/extend/export/service/impl/JudgesSignInImpl.java @@ -23,9 +23,9 @@ import java.util.*; /** - * 评审专家签到表 + * 评审承诺书确认记录 */ -@Service("judgesSignIn") +@Service("judgesSign") @Slf4j public class JudgesSignInImpl implements ExportService { @Autowired @@ -43,10 +43,10 @@ public class JudgesSignInImpl implements ExportService { @SneakyThrows @Override public void doExport(ExportParam param, HttpServletRequest request, HttpServletResponse response) { - log.info("评审专家签到表,ExportParam = {}", JsonUtils.objectToJson(param)); + log.info("评审承诺书确认记录,ExportParam = {}", JsonUtils.objectToJson(param)); //专家人员数据 List list = commonFeignService.rsmsQueryReportPrintByRoomId(param.getAssessRoomId()); - log.info("评标委员会签字表 {},查询专家人员数据 = {}", param.getAssessRoomId(), JsonUtils.objectToJson(list)); + log.info("评审承诺书确认记录 {},查询专家人员数据 = {}", param.getAssessRoomId(), JsonUtils.objectToJson(list)); ArrayList> maps = new ArrayList<>(); for (int i = 0; i < list.size(); i++) { Map data = new HashMap<>(); @@ -69,7 +69,7 @@ public class JudgesSignInImpl implements ExportService { Configure config = Configure.builder().bind("table", policy).build(); XWPFTemplate template = XWPFTemplate.compile(file, config).render(all); //导出的表格名称 - String dictName = commonFeignService.exportDictName(param.getId(), "评审专家签到表") + ".docx"; + String dictName = commonFeignService.exportDictName(param.getId(), "评审承诺书确认记录表") + ".docx"; String fileName = new String(dictName.getBytes(StandardCharsets.UTF_8), StandardCharsets.ISO_8859_1); this.write(template, fileName, response); diff --git a/src/main/resources/model/评审专家签到表.docx b/src/main/resources/model/评审专家签到表.docx index 9b004cb..90cb94b 100644 Binary files a/src/main/resources/model/评审专家签到表.docx and b/src/main/resources/model/评审专家签到表.docx differ diff --git a/src/main/resources/model/评审承诺书确认记录表.docx b/src/main/resources/model/评审承诺书确认记录表.docx new file mode 100644 index 0000000..9b004cb Binary files /dev/null and b/src/main/resources/model/评审承诺书确认记录表.docx differ diff --git a/src/main/resources/model/评标委员会签字表.docx b/src/main/resources/model/评标委员会签字表.docx deleted file mode 100644 index 90cb94b..0000000 Binary files a/src/main/resources/model/评标委员会签字表.docx and /dev/null differ