刘磊
10 天以前 2de09bec5cc05bf875543fa8956167ca7db73021
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/TaskController.cs
@@ -1,5 +1,4 @@
using WIDESEA_DTO;
using static WIDESEA_DTO.RequestTaskDto;
namespace WIDESEA_WMSServer.Controllers;
@@ -56,6 +55,16 @@
        return new WebResponseContent().OK(data: await _locationService.TransferCheckAsync(input));
    }
    /// <summary>
    /// æ£€æŸ¥å…¥åº“是否需要进行移库
    /// </summary>
    /// <param name="taskNum">任务号</param>
    /// <returns>任务</returns>
    [HttpPost, Route("InTransferCheckAsync"), AllowAnonymous]
    public async Task<WebResponseContent> InTransferCheckAsync([FromBody] RequestTaskDto input)
    {
        return new WebResponseContent().OK(data: await _locationService.InTransferCheckAsync(input));
    }
    /// <summary>
    /// è¯·æ±‚任务巷道
@@ -122,4 +131,15 @@
    {
        return Service.CreateAndSendOutboundTask(saveModel);
    }
    /// <summary>
    /// ä¿®æ”¹è½¦è½®å޻向
    /// </summary>
    /// <param name="input">请求数据</param>
    /// <returns></returns>
    [HttpPost, AllowAnonymous, Route("UpWheelsFlow")]
    public WebResponseContent UpWheelsFlow([FromBody] SaveModel saveModel)
    {
        return  Service.UpWheelsFlow(saveModel);
    }
}