1
huangxiaoqiang
2025-10-24 927ce822017ff8459be84b742d519970ca614096
项目代码/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Basic/StockInfoController.cs
@@ -18,9 +18,9 @@
    /// <param name="materielCode"></param>
    /// <returns></returns>
    [HttpPost, HttpGet, Route("GetStockSelectViews"), AllowAnonymous]
    public List<StockSelectViewDTO> GetStockSelectViews(string materielCode)
    public List<StockSelectViewDTO> GetStockSelectViews([FromBody]GetStockSelectViewDto viewDto)
    {
        return Service.GetStockSelectViews(materielCode);
        return Service.GetStockSelectViews(viewDto);
    }
    /// <summary>
@@ -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);
    }
}