From 5e3a8bcac219d13667853eab7f293b85f5b6f2db Mon Sep 17 00:00:00 2001
From: guoyuji <guoyujie@ng.com>
Date: 星期四, 29 二月 2024 10:50:10 +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