huanghongfeng
2025-06-19 1d8897348d578648421b024d0dc5ff3d626e05f9
代码管理/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")]
@@ -104,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]