From 885bd60ed54a0642c48c57a3d685cba24e4c763b Mon Sep 17 00:00:00 2001 From: huanghongfeng <huanghongfeng@hnkhzn.com> Date: 星期日, 08 十二月 2024 11:33:07 +0800 Subject: [PATCH] 1 --- 代码管理/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskInfo/TaskController.cs | 12 +++++++++++- 1 files changed, 11 insertions(+), 1 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 7644186..9e7f6bd 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" @@ -74,6 +74,11 @@ { return Service.ManualOutbound2(saveModel); } + [HttpPost, Route("ManualOutbound3"), AllowAnonymous] + public WebResponseContent ManualOutbound3([FromBody] SaveModel saveModel) + { + return Service.ManualOutbound3(saveModel); + } [HttpPost, Route("ManualOutboundDeleteinventory"), AllowAnonymous] public WebResponseContent ManualOutboundDeleteinventory([FromBody] SaveModel saveModel) { @@ -87,7 +92,12 @@ [HttpPost, Route("Queryinventory"), AllowAnonymous] public WebResponseContent Queryinventory([FromBody] GenerateInv generate) { - return Service.Queryinventory(generate); + return Service.Queryinventory(generate); + } + [HttpGet, Route("PalletQueryinventory"), AllowAnonymous] + public WebResponseContent PalletQueryinventory() + { + return Service.PalletQueryinventory(); } [HttpPost, Route("RelocationTaskCompleted"), AllowAnonymous] public WebResponseContent RelocationTaskCompleted([FromBody] GenerateInv2 generate) -- Gitblit v1.9.3