From 0ed8d9ed041efec0b726a33be20d879c9457e319 Mon Sep 17 00:00:00 2001
From: guoyuji <guoyujie@ng.com>
Date: 星期四, 06 六月 2024 09:39:49 +0800
Subject: [PATCH] Merge branch 'master' of http://bore.pub:10439/r/ERP_override

---
 north-glass-erp/src/main/java/com/example/erp/controller/pp/ReportController.java |   46 +++++++++++++++++++++++++++++++++++++++++-----
 1 files changed, 41 insertions(+), 5 deletions(-)

diff --git a/north-glass-erp/src/main/java/com/example/erp/controller/pp/ReportController.java b/north-glass-erp/src/main/java/com/example/erp/controller/pp/ReportController.java
index 8e9b9bd..42c7314 100644
--- a/north-glass-erp/src/main/java/com/example/erp/controller/pp/ReportController.java
+++ b/north-glass-erp/src/main/java/com/example/erp/controller/pp/ReportController.java
@@ -163,6 +163,19 @@
         return Result.seccess(reportService.rawMaterialRequisitionSv(selectTime1, selectTime2, report));
     }
 
+    @ApiOperation("鐝粍浜ч噺鏄庣粏鎶ヨ〃")
+    @SaCheckPermission("DamageReport.search")
+    @PostMapping("/teamOutput/{pageNum}/{pageSize}/{selectTime1}/{selectTime2}/{selectProcesses}")
+    public Result teamOutput(
+            @PathVariable Integer pageNum,
+            @PathVariable Integer pageSize,
+            @PathVariable Date selectTime1,
+            @PathVariable Date selectTime2,
+            @PathVariable String selectProcesses,
+            @RequestBody TeamOutputDTO teamOutputDTO) {
+        return Result.seccess(reportService.teamOutputSv(pageNum, pageSize, selectTime1, selectTime2,selectProcesses, teamOutputDTO));
+
+    }
     @ApiOperation("璺ㄥ伐搴忔鐮存姤琛ㄥ鍑�")
     @PostMapping("/exportCrossProcessBreaking")
     public void exportCrossProcessBreaking(HttpServletResponse response, @RequestBody List<LocalDate> dates) throws IOException, IllegalAccessException, InstantiationException {
@@ -187,7 +200,7 @@
     @ApiOperation("宸ュ簭寰呭畬鎴愭姤琛ㄥ鍑�")
     @PostMapping("/exportProcessToBeCompleted")
     public void exportProcessToBeCompleted(HttpServletResponse response,
-                                          @RequestBody Map<String,Object> dates)
+                                           @RequestBody Map<String, Object> dates)
             throws IOException, IllegalAccessException, InstantiationException {
         //鍙傛暟锛氱浉搴旂殑鏁版嵁锛屽疄浣撶被淇℃伅锛岀浉搴旂殑鏂规硶锛堟暟鎹幏鍙栵級锛岀敓鎴愮殑excel鍚嶅瓧
         DownExcel.download(response, ProcessToBeCompletedDTO.class, reportService.exportProcessToBeCompletedSv(dates), "ProcessToBeCompleted");
@@ -196,19 +209,42 @@
     @ApiOperation("鍦ㄥ埗鍝佹姤琛ㄥ鍑�")
     @PostMapping("/exportWorkInProgress")
     public void exportWorkInProgress(HttpServletResponse response,
-                                           @RequestBody Map<String,Object> dates)
+                                     @RequestBody Map<String, Object> dates)
             throws IOException, IllegalAccessException, InstantiationException {
         //鍙傛暟锛氱浉搴旂殑鏁版嵁锛屽疄浣撶被淇℃伅锛岀浉搴旂殑鏂规硶锛堟暟鎹幏鍙栵級锛岀敓鎴愮殑excel鍚嶅瓧
         DownExcel.download(response, WorkInProgressDTO.class, reportService.exportWorkInProgressSv(dates), "WorkInProgress");
     }
 
+//
+
     @ApiOperation("浠诲姟瀹屾垚鎯呭喌瀵煎嚭")
     @PostMapping("/exportTaskCompletionStatus")
-    public void exportTaskCompletionStatus(HttpServletResponse response,
-                                     @RequestBody Map<String,Object> dates)
+    public void exportTaskCompletionStatus(HttpServletResponse response, @RequestBody List<LocalDate> dates) throws IOException, IllegalAccessException, InstantiationException {
+        //鍙傛暟锛氱浉搴旂殑鏁版嵁锛屽疄浣撶被淇℃伅锛岀浉搴旂殑鏂规硶锛堟暟鎹幏鍙栵級锛岀敓鎴愮殑excel鍚嶅瓧
+        DownExcel.download(response, TaskCompletionStatusDTO.class, reportService.exportDamageReportSv(dates), "TaskCompletionStatus");
+    }
+
+    @ApiOperation("鍘熺墖棰嗘枡瀵煎嚭")
+    @PostMapping("/exportRawMaterialRequisition")
+    public void exportRawMaterialRequisition(HttpServletResponse response, @RequestBody List<LocalDate> dates) throws IOException, IllegalAccessException, InstantiationException {
+        //鍙傛暟锛氱浉搴旂殑鏁版嵁锛屽疄浣撶被淇℃伅锛岀浉搴旂殑鏂规硶锛堟暟鎹幏鍙栵級锛岀敓鎴愮殑excel鍚嶅瓧
+        DownExcel.download(response, RawMaterialRequisitionDTO.class, reportService.exportRawMaterialRequisitionSv(dates), "RawMaterialRequisition");
+    }
+
+    @ApiOperation("鍝佽川鎶ヨ〃瀵煎嚭")
+    @PostMapping("/exportQualityReport")
+    public void exportQualityReport(HttpServletResponse response, @RequestBody List<LocalDate> dates) throws IOException, IllegalAccessException, InstantiationException {
+        //鍙傛暟锛氱浉搴旂殑鏁版嵁锛屽疄浣撶被淇℃伅锛岀浉搴旂殑鏂规硶锛堟暟鎹幏鍙栵級锛岀敓鎴愮殑excel鍚嶅瓧
+        DownExcel.download(response, QualityReportDTO.class, reportService.exportQualityReportSv(dates), "QualityReport");
+    }
+
+    @ApiOperation("鎴愬搧鐜囨姤琛ㄥ鍑�")
+    @PostMapping("/exportYield")
+    public void exportYield(HttpServletResponse response,
+                                     @RequestBody Map<String, Object> dates)
             throws IOException, IllegalAccessException, InstantiationException {
         //鍙傛暟锛氱浉搴旂殑鏁版嵁锛屽疄浣撶被淇℃伅锛岀浉搴旂殑鏂规硶锛堟暟鎹幏鍙栵級锛岀敓鎴愮殑excel鍚嶅瓧
-        DownExcel.download(response, WorkInProgressDTO.class, reportService.exportWorkInProgressSv(dates), "WorkInProgress");
+        DownExcel.download(response, YieldDTO.class, reportService.exportYieldSv(dates), "Yield");
     }
 
 }

--
Gitblit v1.8.0