From 7be9b534dcd5cbdb8c24c908d1a738aeec6f52a9 Mon Sep 17 00:00:00 2001 From: chenlu <1320612696@qq.com> Date: 星期五, 04 十月 2024 16:18:35 +0800 Subject: [PATCH] 添加工程打印明细 --- north-glass-erp/src/main/java/com/example/erp/service/pp/ReportService.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/north-glass-erp/src/main/java/com/example/erp/service/pp/ReportService.java b/north-glass-erp/src/main/java/com/example/erp/service/pp/ReportService.java index 6be9263..2e5958a 100644 --- a/north-glass-erp/src/main/java/com/example/erp/service/pp/ReportService.java +++ b/north-glass-erp/src/main/java/com/example/erp/service/pp/ReportService.java @@ -375,7 +375,7 @@ } public List exportWorkInProgressSv(Map<String, Object> dates) { - List<LocalDate> date= (List<LocalDate>) dates.get("date"); + //List<LocalDate> date= (List<LocalDate>) dates.get("date"); String process= (String) dates.get("processes"); String inputVal= (String) dates.get("inputVal"); String project= (String) dates.get("project"); @@ -385,7 +385,7 @@ if ("null".equals(project)) { project = ""; } - return reportMapper.exportWorkInProgressMp(date,process,inputVal,project); + return reportMapper.exportWorkInProgressMp(process,inputVal,project); } public List exportTaskCompletionStatusSv(Map<String, Object> dates) { -- Gitblit v1.8.0