From b09e0423b15d6402b44d4ef338bfb85f027daf3c Mon Sep 17 00:00:00 2001
From: chenlu <1320612696@qq.com>
Date: 星期二, 27 二月 2024 14:03:58 +0800
Subject: [PATCH] 更新程序,流程卡删除,修改排版状态

---
 north-glass-erp/src/main/java/com/example/erp/controller/pp/ProcessCardController.java |   23 ++++++++++++++++++++++-
 1 files changed, 22 insertions(+), 1 deletions(-)

diff --git a/north-glass-erp/src/main/java/com/example/erp/controller/pp/ProcessCardController.java b/north-glass-erp/src/main/java/com/example/erp/controller/pp/ProcessCardController.java
index a4ac0ee..6fd4571 100644
--- a/north-glass-erp/src/main/java/com/example/erp/controller/pp/ProcessCardController.java
+++ b/north-glass-erp/src/main/java/com/example/erp/controller/pp/ProcessCardController.java
@@ -82,7 +82,6 @@
 
     //鍒嗘灦鏂板鏄庣粏鏌ヨ
     @PostMapping  ("/selectNoCard/{orderId}/{productionId}")
-
     public Result SelectNoCard(
             @PathVariable String orderId,
             @PathVariable String productionId,
@@ -103,4 +102,26 @@
         }
     }
 
+    //鏌ヨ绗竴娆℃帓鐗堟暟鎹�
+    @PostMapping  ("/selectLastScheduling/{selectTime1}/{selectTime2}")
+    public Result selectLastScheduling(
+            @PathVariable String selectTime1,
+            @PathVariable String selectTime2,
+            @RequestBody FlowCard flowCard){
+        return Result.seccess(flowCardService.selectLastScheduling(selectTime1,selectTime2,flowCard));
+
+    }
+    //鏌ヨ鎺掔増鏁版嵁
+    @PostMapping  ("/selectScheduling/{selectTime1}/{selectTime2}/{orderId}/{processes}/{state}")
+    public Result selectScheduling(
+            @PathVariable String selectTime1,
+            @PathVariable String selectTime2,
+            @PathVariable String orderId,
+            @PathVariable String processes,
+            @PathVariable Integer state,
+            @RequestBody FlowCard flowCard){
+        return Result.seccess(flowCardService.SelectSchedulingSv(selectTime1,selectTime2,orderId,processes,state,flowCard));
+
+    }
+
 }

--
Gitblit v1.8.0