From 9690c66ebb0e0f9322e96db318b0dbd9aeeace2f Mon Sep 17 00:00:00 2001
From: chenlu <1320612696@qq.com>
Date: 星期四, 16 五月 2024 13:59:41 +0800
Subject: [PATCH] 修改删除失败后前端返回信息,修改流程卡打印界面面积精准度

---
 north-glass-erp/src/main/java/com/example/erp/mapper/pp/ReportMapper.java |   35 +++++++++++++++++++++++++++++++----
 1 files changed, 31 insertions(+), 4 deletions(-)

diff --git a/north-glass-erp/src/main/java/com/example/erp/mapper/pp/ReportMapper.java b/north-glass-erp/src/main/java/com/example/erp/mapper/pp/ReportMapper.java
index 2e1e171..e026297 100644
--- a/north-glass-erp/src/main/java/com/example/erp/mapper/pp/ReportMapper.java
+++ b/north-glass-erp/src/main/java/com/example/erp/mapper/pp/ReportMapper.java
@@ -2,9 +2,7 @@
 
 
 import com.example.erp.entity.pp.DamageDetails;
-import com.example.erp.entity.pp.FlowCard;
-import com.example.erp.entity.sd.OrderDetail;
-import com.example.erp.entity.sd.OrderGlassDetail;
+import com.example.erp.entity.pp.Report;
 import org.apache.ibatis.annotations.Mapper;
 import org.apache.ibatis.annotations.Param;
 
@@ -19,5 +17,34 @@
 
     List<DamageDetails> getProcessBreaking(Integer offset, Integer pageSize, String startDate, String endDate, DamageDetails damageDetails);
 
-    Map<String,Integer> getProcessBreakingTotal(Integer offset, Integer pageSize, String startDate, String endDate, DamageDetails damageDetails);
+    Map<String, Integer> getProcessBreakingTotal(Integer offset, Integer pageSize, String startDate, String endDate, DamageDetails damageDetails);
+
+    List<Map<String, String>> workInProgressMp(
+            @Param("selectTime1") Date selectTime1, @Param("selectTime2") Date selectTime2,
+            @Param("orderId") String orderId, @Param("inputProject") String inputProject,
+            @Param("selectProcesses") String selectProcesses, Report report);
+
+    List<Map<String, String>> processToBeCompletedMp(Date selectTime1, Date selectTime2, String orderId,
+                                                     String inputProject, String selectProcesses, Report report);
+
+    List<Map<String, String>> selectDamageReportMp(Date selectTime1, Date selectTime2, Report report);
+
+    List<Map<String, String>> splittingDetailsOutsideMp(String orderId, Report report);
+
+    List<Map<String, String>> qualityReportMp(Date selectTime1, Date selectTime2, Report report);
+
+    List<Map<String, String>> yieldMp(Date selectTime1, Date selectTime2, String selectProcesses, Report report);
+
+    List<Map<String, String>> productionScheduleMp(String orderId);
+
+    List<Map<String, String>> taskCompletionStatusMp(Date selectTime1, Date selectTime2);
+
+    List<Map<String, String>> orderPlanDecompositionMp(Date selectTime1, Date selectTime2, Report report);
+
+    List<Map<String, String>> rawMaterialRequisitionMp(Date selectTime1, Date selectTime2, Report report);
+
+//    Map<String, Integer> getWorkInProgressTotal(
+//                                                @Param("selectTime1") Date selectTime1, @Param("selectTime2") Date selectTime2,
+//                                                @Param("orderId") String orderId, @Param("inputProject") String inputProject,
+//                                                @Param("selectProcesses") String selectProcesses, Report report);
 }

--
Gitblit v1.8.0