1
huangxiaoqiang
2025-10-24 927ce822017ff8459be84b742d519970ca614096
项目代码/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Task/TaskController.cs
@@ -81,7 +81,7 @@
    /// <returns></returns>
    [HttpPost, AllowAnonymous, Route("RequestOutboundTaskAsync")]
    [TypeFilter(typeof(ThrottleFilter), Arguments = new object[] { 5 })]
    public async Task<WebResponseContent> RequestOutboundTaskAsync([FromBody] RequestTaskDto taskDto)
    public async Task<Dt_Task> RequestOutboundTaskAsync([FromBody] RequestTaskDto taskDto)
    {
        return await Service.RequestOutboundTaskAsync(taskDto);
    }
@@ -152,8 +152,8 @@
    [HttpPost, AllowAnonymous, Route("SendERPTaskCompletion")]
    [TypeFilter(typeof(ThrottleFilter), Arguments = new object[] { 5 })]
    public Task<WebResponseContent> SendERPTaskCompletion(string palletCode)
    public Task<WebResponseContent> ERPAllocate(string palletCode)
    {
        return Service.SendERPTaskCompletion(palletCode);
        return Service.ERPAllocate(palletCode);
    }
}