1
yangpeixing
2025-12-04 885092869d8a27a0b77d6e55d3dd3f00f29e8002
项目代码/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Task/TaskController.cs
@@ -89,9 +89,9 @@
    /// <returns></returns>
    [HttpPost, HttpGet, AllowAnonymous, Route("OutBoundTaskAsync")]
    [TypeFilter(typeof(ThrottleFilter), Arguments = new object[] { 2 })]
    public Task<WebResponseContent> OutBoundTaskAsync(string palletCode, string remark)
    public Task<WebResponseContent> OutBoundTaskAsync(string palletCode, string remark, int doubleTray)
    {
        return Service.OutBoundTaskAsync(palletCode, remark);
        return Service.OutBoundTaskAsync(palletCode, remark, doubleTray);
    }
    [HttpPost, HttpGet, AllowAnonymous, Route("OtherOutBoundTaskAsync")]
@@ -169,4 +169,13 @@
    {
        return Service.RequestLocation(palletCode);
    }
    /// <summary>
    /// 鍒濆鍖栨彁鍗囨満
    /// </summary>
    [HttpGet, HttpPost, AllowAnonymous, Route("elevator")]
    public Task<WebResponseContent> InitializationElevator()
    {
         return Service.InitializationElevator();
    }
}