From eae9077f3978f695f4e3af5301e8a08bdd8bf23c Mon Sep 17 00:00:00 2001 From: 肖洋 <cathay_xy@163.com> Date: 星期一, 09 十二月 2024 09:24:46 +0800 Subject: [PATCH] 最新程序 --- Code Management/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskController.cs | 23 +++++++++++++++++++++++ 1 files changed, 23 insertions(+), 0 deletions(-) diff --git a/Code Management/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskController.cs b/Code Management/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskController.cs index 067b924..1eaba1b 100644 --- a/Code Management/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskController.cs +++ b/Code Management/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskController.cs @@ -132,4 +132,27 @@ { return Service.StockCheckingAsync(); } + + /// <summary> + /// 鍒涘缓鎸囧畾浠诲姟 + /// </summary> + /// <param name="locationCode">璐т綅鍙�</param> + /// <param name="palletCode">鎵樼洏鍙�</param> + /// <returns></returns> + [HttpGet, AllowAnonymous, Route("CreateAndSendOutboundTask")] + public async Task<WebResponseContent> CreateAndSendOutboundTask(string locationCode, string palletCode) + { + return await Service.CreateAndSendOutboundTask(locationCode, palletCode); + } + + /// <summary> + /// 甯告俯琛ョ┖鎵樼洏鑷冲垎瀹� + /// </summary> + /// <param name="input">璇锋眰鏁版嵁</param> + /// <returns></returns> + [HttpPost, AllowAnonymous, Route("GetFROutTrayToCW")] + public async Task<WebResponseContent> GetFROutTrayToCW([FromBody] RequestTaskDto input) + { + return await Service.GetFROutTrayToCW(input); + } } \ No newline at end of file -- Gitblit v1.9.3