huangxiaoqiang
2025-11-17 b07472f884708a6bfdf63d999004bbf0bb5f00a8
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Basic/StockInfoController.cs
@@ -12,43 +12,39 @@
    {
    }
    /// <summary>
    /// æ ¹æ®ç‰©æ–™ç¼–码获取库存可用量视图
    /// </summary>
    /// <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>
    /// ç»„盘
    /// PDA获取库存视图
    /// </summary>
    /// <param name="groupPlate"></param>
    /// <returns></returns>
    [HttpPost, HttpGet, Route("AddGroupPlateAsync"), AllowAnonymous]
    public Task<WebResponseContent> AddGroupPlateAsync([FromBody] GroupPlate groupPlate)
    [HttpPost, HttpGet, Route("GetStockView"), AllowAnonymous]
    public WebResponseContent GetStockView([FromBody] GetStockSelectViewDto viewDto)
    {
        return Service.AddGroupPlateAsync(groupPlate);
        return Service.GetStockView(viewDto);
    }
    /// <summary>
    /// è§£ç›˜
    /// </summary>
    /// <param name="groupPlate"></param>
    /// <returns></returns>
    [HttpPost, HttpGet, Route("DeleteGroupPlateAsync"), AllowAnonymous]
    public Task<WebResponseContent> DeleteGroupPlateAsync([FromBody] GroupPlate groupPlate)
    [HttpPost, HttpGet, Route("GetStockData"), AllowAnonymous]
    public Task<WebResponseContent> GetStockData()
    {
        return Service.DeleteGroupPlateAsync(groupPlate);
        return Service.GetStockData();
    }
    [HttpPost, HttpGet, Route("GenerateOutboundTask"), AllowAnonymous]
    public WebResponseContent GenerateOutboundTask([FromBody] GenerateOutTaskDto requestOut)
    [HttpPost, HttpGet, Route("PrintOrder"), AllowAnonymous]
    public Task<WebResponseContent> PrintOrder([FromBody]object[] key)
    {
        return Service.GenerateOutboundTask(requestOut);
        return Service.PrintOrder(key);
    }
}