From 19e5b7583a2aa1968c674b4b35f618cc6c2e29ef Mon Sep 17 00:00:00 2001 From: huanghongfeng <huanghongfeng@hnkhzn.com> Date: 星期一, 09 十二月 2024 14:16:30 +0800 Subject: [PATCH] 新增历史信息,页面排序,生产时间 --- 代码管理/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskInfo/TaskController.cs | 36 +++++++++++++++++++++++++++++++++--- 1 files changed, 33 insertions(+), 3 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 beb2c7e..3e5b703 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" @@ -64,12 +64,31 @@ return Service.GenerateInventoryInformation(generate); } - [HttpPost, Route("ManualOutbound"), AllowAnonymous] + [HttpPost, Route("ManualOutbound"), AllowAnonymous] public WebResponseContent ManualOutbound([FromBody] SaveModel saveModel) { return Service.ManualOutbound(saveModel); } - + [HttpPost, Route("ManualOutbound2"), AllowAnonymous] + public WebResponseContent ManualOutbound2([FromBody] SaveModel saveModel) + { + return Service.ManualOutbound2(saveModel); + } + [HttpPost, Route("ManualOutbound3"), AllowAnonymous] + public WebResponseContent ManualOutbound3([FromBody] SaveModel saveModel) + { + return Service.ManualOutbound3(saveModel); + } + [HttpPost, Route("ManualOutbound4"), AllowAnonymous] + public WebResponseContent ManualOutbound4([FromBody] SaveModel saveModel) + { + return Service.ManualOutbound4(saveModel); + } + [HttpPost, Route("ManualOutboundDeleteinventory"), AllowAnonymous] + public WebResponseContent ManualOutboundDeleteinventory([FromBody] SaveModel saveModel) + { + return Service.ManualOutboundDeleteinventory(saveModel); + } [HttpPost, Route("Empty_outbound"), AllowAnonymous] public WebResponseContent Empty_outbound([FromBody] GenerateInv generate) { @@ -78,7 +97,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) @@ -91,5 +115,11 @@ { return Service.Rawmaterialout(generate); } + + [HttpGet, Route("Cancelinventory"), AllowAnonymous] + public WebResponseContent Cancelinventory(int taskNum) + { + return Service.Cancelinventory(taskNum); + } } } -- Gitblit v1.9.3