From 2f281db1e4272c8061cd424c3eb946abb1b0a640 Mon Sep 17 00:00:00 2001
From: wangxinhui <wangxinhui@hnkhzn.com>
Date: 星期三, 30 七月 2025 15:07:09 +0800
Subject: [PATCH] 测试架货位优化,辅料优化等

---
 代码管理/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskInfo/TaskController.cs |   27 +++++++++++++++++++++++++--
 1 files changed, 25 insertions(+), 2 deletions(-)

diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskInfo/TaskController.cs" "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskInfo/TaskController.cs"
index f828daa..b28f736 100644
--- "a/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskInfo/TaskController.cs"
+++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskInfo/TaskController.cs"
@@ -42,7 +42,14 @@
         {
             return Service.RequestInboundTask(saveModel);
         }
-        
+        /// <summary>
+        /// 鏌ヨ璐ㄦ鏁伴噺
+        /// </summary>
+        [HttpPost, HttpGet, Route("InQualityConfirm"), AllowAnonymous]
+        public WebResponseContent InQualityConfirm(string palletCode)
+        {
+            return Service.InQualityConfirm(palletCode);
+        }
         /// <summary>
         /// 绌虹鍏ュ簱
         /// </summary>
@@ -183,7 +190,6 @@
         /// <summary>
         /// 鐢熸垚鎴愬搧鍑哄簱浠诲姟
         /// </summary>
-        /// <param name="ProOutNo">鍑哄簱璁㈠崟鍙�</param>
         /// <param name="StationCode">绔欏彴鍦板潃</param>
         /// <returns></returns>
         [HttpPost, HttpGet, Route("OutProductTask"), AllowAnonymous]
@@ -220,6 +226,15 @@
         public async Task<WebResponseContent> OutProRworkTask([FromBody] int[] keys, string StationCode, int Grade)
         {
             return await Service.OutProductTask(keys, StationCode, Grade);
+        }
+
+        /// <summary>
+        /// 鐢熸垚鎴愬搧鎶ュ簾浠诲姟
+        /// </summary>
+        [HttpPost, HttpGet, Route("OutProScrapTask"), AllowAnonymous]
+        public async Task<WebResponseContent> OutProScrapTask([FromBody] int[] keys, string StationCode, int Grade)
+        {
+            return await Service.OutProScrapTask(keys, StationCode, Grade);
         }
         ///// <summary>
         ///// 鐢熸垚MESPP浠撳ぇ鍗峰嚭搴撲换鍔�
@@ -385,5 +400,13 @@
         {
             return Service.GetZHMesMaterialLot(materialLot);
         }
+        /// <summary>
+        /// 閫夊畾搴撳瓨鐢熸垚鐩樼偣鍗曞嚭搴�
+        /// </summary>
+        [HttpPost, Route("TakeOutbound"), AllowAnonymous]
+        public WebResponseContent TakeOutbound([FromBody] List<StockViewDTO> stockViews)
+        {
+            return Service.TakeOutbound(stockViews);
+        }
     }
 }

--
Gitblit v1.9.3