1
huangxiaoqiang
2025-10-23 82149871f30f4564d84272649352496a2ab0a38e
项目代码/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Basic/StockInfoController.cs
@@ -40,15 +40,15 @@
    /// <param name="groupPlate"></param>
    /// <returns></returns>
    [HttpPost, HttpGet, Route("DeleteGroupPlateAsync"), AllowAnonymous]
    public Task<WebResponseContent> DeleteGroupPlateAsync([FromBody] GroupPlate groupPlate)
    public async Task<WebResponseContent> DeleteGroupPlateAsync([FromBody] GroupPlate groupPlate)
    {
        return Service.DeleteGroupPlateAsync(groupPlate);
        return await Service.DeleteGroupPlateAsync(groupPlate);
    }
    [HttpPost, HttpGet, Route("GenerateOutboundTask"), AllowAnonymous]
    public WebResponseContent GenerateOutboundTask([FromBody] GenerateOutTaskDto requestOut)
    public async Task<WebResponseContent> GenerateOutboundTask([FromBody] GenerateOutTaskDto requestOut)
    {
        return Service.GenerateOutboundTask(requestOut);
        return await Service.GenerateOutboundTask(requestOut);
    }
}