From d01658c63cd541fe4ea5cec5c4bd7f23b9408cdb Mon Sep 17 00:00:00 2001
From: 647556386 <647556386@qq.com>
Date: 星期六, 18 十月 2025 15:04:56 +0800
Subject: [PATCH] 前端,pda,后端接口更改,新增,优化

---
 WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskInfo/TaskController.cs |   27 +++++++++++++++++++++++++++
 1 files changed, 27 insertions(+), 0 deletions(-)

diff --git a/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskInfo/TaskController.cs b/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskInfo/TaskController.cs
index f8a5b11..287f0e4 100644
--- a/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskInfo/TaskController.cs
+++ b/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskInfo/TaskController.cs
@@ -175,5 +175,32 @@
         {
             return Service.UpdateTaskInfo(task);
         }
+
+        [HttpPost, Route("FeedBackInboundERP"), AllowAnonymous]
+        public WebResponseContent FeedBackInboundERP(string upperOrderNo,string linId)
+        {
+            return Service.FeedBackInboundERP(upperOrderNo , linId);
+        }
+
+        /// <summary>
+        /// 鍗曟嵁鏄庣粏鍑哄簱瀹屾垚鍥炶皟erp
+        /// </summary>
+        /// <param name="orderNO"></param>
+        /// <param name="linId"></param>
+        /// <returns></returns>
+        [HttpPost, Route("FeedBackOutERP"), AllowAnonymous]
+        public WebResponseContent FeedBackOutERP(string orderNO, string linId)
+        {
+            return Service.FeedBackOutERP(orderNO, linId);
+        }
+
+        /// <summary>
+        /// 閫夊畾搴撳瓨鐢熸垚鐩樼偣鍗曞嚭搴�
+        /// </summary>
+        [HttpPost, Route("TakeOutbound"), AllowAnonymous]
+        public WebResponseContent TakeOutbound([FromBody] List<StockViewDTO> stockViews)
+        {
+            return Service.TakeOutbound(stockViews);
+        }
     }
 }

--
Gitblit v1.9.3