From a0adb6373dbe1d37858998c12e206219dc45ac5c Mon Sep 17 00:00:00 2001
From: chenyong <chenyong@hnkhzn.com>
Date: 星期二, 17 三月 2026 15:36:07 +0800
Subject: [PATCH] 修复用户编辑页面下拉框无最近角色选项问题

---
 项目代码/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/ITaskService.cs |   34 +++++++++++++++++++++++++++++++---
 1 files changed, 31 insertions(+), 3 deletions(-)

diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/ITaskService.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/ITaskService.cs"
index df1e7c9..122a276 100644
--- "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/ITaskService.cs"
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/ITaskService.cs"
@@ -38,19 +38,32 @@
     public interface ITaskService : IService<Dt_Task>
     {
         ITaskRepository Repository { get; }
+        WebResponseContent InboundRequest(string stationCode, string roadwayNo, string palletCode);
+
+        WebResponseContent DeviceRequestInboundTaskSimple(string stationCode, string palletCode, int heightType);
+
+
+        WebResponseContent ApplyLocation(string palletCode);
 
         Task<WebResponseContent> TaskCompleted(int taskNum);
 
         WebResponseContent UpdateTaskStatus(int tasknum, int tasktype);
 
+
+        WebResponseContent GenerateOutboundTask(int orderDetailId, List<StockSelectViewDTO> stockSelectViews);
+
+        WebResponseContent WMSGenerateOutboundTask(int[] keys);
+
+
         WebResponseContent CallMateriel(string endPoint);
 
         WebResponseContent MaterielCarry(string startPoint);
-
+        WebResponseContent IsRelocations(int TaskNum, string SourceAddress);
+        WebResponseContent Cancelinventory(int taskNum);
         WebResponseContent InboundTaskCompleted(int taskNum);
-
         WebResponseContent OutboundTaskCompleted(int taskNum);
 
+        WebResponseContent InventoryIn(string name, int qty);
         /// <summary>
         /// 鍒嗛厤宸烽亾
         /// </summary>
@@ -58,7 +71,14 @@
         /// <param name="roadwayNos"></param>
         /// <returns></returns>
         WebResponseContent AssignRoadway(int taskNum, List<string> roadwayNos, int heightType);
-
+        /// <summary>
+        /// 鍏ュ簱浠诲姟鐢宠鍒嗛厤璐т綅
+        /// </summary>
+        /// <param name="taskNum">浠诲姟鍙�</param>
+        /// <param name="roadwayNo">宸烽亾鍙�</param>
+        /// <param name="palletType">鎵樼洏绫诲瀷</param>
+        /// <returns></returns>
+        WebResponseContent AssignInboundTaskLocation(int taskNum, string roadwayNo);
 
         /// <summary>
         /// 淇敼浠诲姟鐘舵��
@@ -66,5 +86,13 @@
         /// <param name="task"></param>
         /// <returns></returns>
         WebResponseContent UpdateTaskInfo(WCSTaskDTO task);
+
+        /// <summary>
+        /// 搴撳瓨鐩樼偣
+        /// </summary>
+        /// <param name="stockViews"></param>
+        /// <returns></returns>
+        WebResponseContent TakeOutbound(List<StockViewDTO> stockViews);
+
     }
 }

--
Gitblit v1.9.3