From 734f49c3f74e4a46cfb5892ce60dbf1bb86e74ab Mon Sep 17 00:00:00 2001 From: wankeda <Administrator@DESKTOP-HAU3ST3> Date: 星期二, 22 七月 2025 19:14:39 +0800 Subject: [PATCH] 出入库流程 --- WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/ITaskService.cs | 27 ++++++++++++++++++++++++++- 1 files changed, 26 insertions(+), 1 deletions(-) diff --git a/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/ITaskService.cs b/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/ITaskService.cs index cff8c05..2ce1c7a 100644 --- a/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/ITaskService.cs +++ b/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/ITaskService.cs @@ -29,6 +29,7 @@ using WIDESEA_Core.BaseServices; using WIDESEA_Core.Enums; using WIDESEA_DTO.Stock; +using WIDESEA_DTO.Task; using WIDESEA_ITaskInfoRepository; using WIDESEA_Model.Models; @@ -39,9 +40,12 @@ ITaskRepository Repository { get; } WebResponseContent InboundRequest(string stationCode, string roadwayNo, string palletCode); - WebResponseContent TaskCompleted(int taskNum); + WebResponseContent DeviceRequestInboundTaskSimple(string stationCode, string palletCode); + + Task<WebResponseContent> TaskCompleted(int taskNum); WebResponseContent UpdateTaskStatus(int tasknum, int tasktype); + WebResponseContent GenerateOutboundTask(int orderDetailId, List<StockSelectViewDTO> stockSelectViews); @@ -58,6 +62,27 @@ WebResponseContent AddOutboundOrders(Houseounbound orderAddDTO); WebResponseContent InventoryOut(HouseCancelOut houseInventoryOut); WebResponseContent InventoryIn(string name, int qty); + /// <summary> + /// 鍒嗛厤宸烽亾 + /// </summary> + /// <param name="taskNum"></param> + /// <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> + /// 淇敼浠诲姟鐘舵�� + /// </summary> + /// <param name="task"></param> + /// <returns></returns> + WebResponseContent UpdateTaskInfo(WCSTaskDTO task); } } -- Gitblit v1.9.3