huangxiaoqiang
2025-11-17 b07472f884708a6bfdf63d999004bbf0bb5f00a8
项目代码/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Basic/StockInfoController.cs
@@ -24,27 +24,6 @@
        return Service.GetStockSelectViews(viewDto);
    }
    /// <summary>
    /// 缁勭洏
    /// </summary>
    /// <param name="groupPlate"></param>
    /// <returns></returns>
    [HttpPost, HttpGet, Route("AddGroupPlateAsync"), AllowAnonymous]
    public Task<WebResponseContent> AddGroupPlateAsync([FromBody] GroupPlate groupPlate)
    {
        return Service.AddGroupPlateAsync(groupPlate);
    }
    /// <summary>
    /// 瑙g洏
    /// </summary>
    /// <param name="groupPlate"></param>
    /// <returns></returns>
    [HttpPost, HttpGet, Route("DeleteGroupPlateAsync"), AllowAnonymous]
    public async Task<WebResponseContent> DeleteGroupPlateAsync([FromBody] GroupPlate groupPlate)
    {
        return await Service.DeleteGroupPlateAsync(groupPlate);
    }
    /// <summary>
    /// PDA鑾峰彇搴撳瓨瑙嗗浘
@@ -56,4 +35,16 @@
    {
        return Service.GetStockView(viewDto);
    }
    [HttpPost, HttpGet, Route("GetStockData"), AllowAnonymous]
    public Task<WebResponseContent> GetStockData()
    {
        return Service.GetStockData();
    }
    [HttpPost, HttpGet, Route("PrintOrder"), AllowAnonymous]
    public Task<WebResponseContent> PrintOrder([FromBody]object[] key)
    {
        return Service.PrintOrder(key);
    }
}