From ba4f03556d24a1548de75c8219cbc3f06e4ff57c Mon Sep 17 00:00:00 2001
From: 于杰 <1210123631@qq.com>
Date: 星期一, 11 八月 2025 16:31:18 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 north-glass-erp/src/main/java/com/example/erp/controller/pp/ProcessCardController.java |   47 +++++++++++++++++++++++++++++++++++++++++------
 1 files changed, 41 insertions(+), 6 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 c933786..0f13873 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
@@ -103,13 +103,25 @@
     }
 
     //鍒嗘灦鏂板鏄庣粏鏌ヨ
-    @ApiOperation("鍒嗘灦鏄庣粏鏂板鎺ュ彛")
+    @ApiOperation("鍒嗘灦鏂板鏄庣粏鏌ヨ")
     @PostMapping("/selectNoCard/{orderId}/{productionId}")
     public Result SelectNoCard(
             @PathVariable String orderId,
             @PathVariable String productionId,
             @RequestBody FlowCard flowCard) {
         return Result.seccess(flowCardService.selectNoCardSv(orderId, productionId, flowCard));
+
+    }
+
+    @ApiOperation("鍒嗘灦鏂板鏄庣粏鎺掑簭鏌ヨ")
+    @PostMapping("/selectSortingCard/{orderId}/{productionId}/{flashback}/{optionVal}")
+    public Result selectSortingCard(
+            @PathVariable String orderId,
+            @PathVariable String productionId,
+            @PathVariable String flashback,
+            @PathVariable String optionVal,
+            @RequestBody FlowCard flowCard) {
+        return Result.seccess(flowCardService.selectSortingCardSv(orderId, productionId,flashback,optionVal, flowCard));
 
     }
 
@@ -187,21 +199,23 @@
     }
 
     @ApiOperation("鎵撳嵃娴佺▼鍗℃暟鎹煡璇㈡帴鍙�")
-    @PostMapping("/getSelectPrinting/{printMerge}/{printLike}/{merge}/{flashback}")
+    @PostMapping("/getSelectPrinting/{printMerge}/{printLike}/{merge}/{flashback}/{compound}/{landingSequence}")
     public Result getSelectPrinting(
             @PathVariable String printMerge,
             @PathVariable String printLike,
             @PathVariable String merge,
             @PathVariable String flashback,
+            @PathVariable String compound,
+            @PathVariable String landingSequence,
             @RequestBody Map<String, Object> object) {
-        return Result.seccess(flowCardService.getSelectPrintingSv(object,printMerge,printLike,merge,flashback));
+        return Result.seccess(flowCardService.getSelectPrintingSv(object,printMerge,printLike,merge,flashback,compound,landingSequence));
     }
 
     @ApiOperation("宸ョ▼鎵撳嵃娴佺▼鍗℃暟鎹煡璇㈡帴鍙�")
-    @PostMapping("/getSelectPrintProject/{printProject}/{merge}/{flashback}")
+    @PostMapping("/getSelectPrintProject/{printProject}/{merge}/{flashback}/{landingSequence}")
     public Result getSelectPrintProject(
-            @PathVariable String printProject,@PathVariable String merge,@PathVariable String flashback) {
-        return Result.seccess(flowCardService.getSelectPrintProject(printProject,merge,flashback));
+            @PathVariable String printProject,@PathVariable String merge,@PathVariable String flashback,@PathVariable String landingSequence) {
+        return Result.seccess(flowCardService.getSelectPrintProject(printProject,merge,flashback,landingSequence));
     }
 
     @ApiOperation("鎵撳嵃鏍囩鏁版嵁鏌ヨ鎺ュ彛")
@@ -478,4 +492,25 @@
         //鍙傛暟锛氱浉搴旂殑鏁版嵁锛屽疄浣撶被淇℃伅锛岀浉搴旂殑鏂规硶锛堟暟鎹幏鍙栵級锛岀敓鎴愮殑excel鍚嶅瓧
         DownExcel.download(response, FlowCardDTO.class, flowCardService.exportDateProcessSv(dates), "DateProcess");
     }
+
+    @ApiOperation("淇敼鐢熶骇缁堟鏁伴噺")
+    @PostMapping("/updateTermination/{processId}/{orderNumber}/{value}")
+    public Result updateTermination(
+            @PathVariable String processId,
+            @PathVariable Integer orderNumber,
+            @PathVariable Integer value
+    ) {
+
+        return Result.seccess(flowCardService.updateTerminationSv(processId,orderNumber,value));
+    }
+
+    @ApiOperation("鏌ヨ鐢ㄤ簬淇敼鐢熶骇缁堟鏁伴噺鐨勫畬宸ユ暟閲�")
+    @PostMapping("/selectCompleted/{processId}/{orderNumber}/{process}")
+    public Result selectCompleted(
+            @PathVariable String processId,
+            @PathVariable Integer orderNumber,
+            @PathVariable String process) {
+        return Result.seccess(flowCardService.selectCompletedSv(processId, orderNumber,process));
+
+    }
 }

--
Gitblit v1.8.0