huanghongfeng
2025-01-24 829eabf256e29392ca63f6da48829dba3b075dfe
代码管理/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskInfo/TaskController.cs
@@ -25,9 +25,9 @@
        }
        [HttpGet, Route("TaskCompleted"), AllowAnonymous]
        public WebResponseContent TaskCompleted(int taskNum)
        public WebResponseContent TaskCompleted(int taskNum,int HowWorks)
        {
            return Service.TaskCompleted(taskNum);
            return Service.TaskCompleted(taskNum, HowWorks);
        }
        [HttpPost, Route("GenerateOutboundTask")]
@@ -74,6 +74,16 @@
        {
            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)
        {
@@ -94,10 +104,10 @@
        {
            return Service.PalletQueryinventory(); 
        }
        [HttpPost, Route("RelocationTaskCompleted"), AllowAnonymous]
        public WebResponseContent RelocationTaskCompleted([FromBody] GenerateInv2 generate)
        [HttpPost, Route("RelocationInTaskCompleted"), AllowAnonymous]
        public WebResponseContent RelocationInTaskCompleted([FromBody] Dt_Task task)
        {
            return Service.RelocationTaskCompleted(generate);
            return Service.RelocationInTaskCompleted(task);
        }
        [HttpPost, Route("Rawmaterialout"), AllowAnonymous]