huangxiaoqiang
2025-11-17 b07472f884708a6bfdf63d999004bbf0bb5f00a8
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSServer/WIDESEA_IStorageBasicService/Stock/IStockInfoService.cs
@@ -6,30 +6,21 @@
public interface IStockInfoService : IService<DtStockInfo>
{
    /// <summary>
    /// æ ¹æ®ç‰©æ–™ç¼–码获取库存可用量视图
    /// åº“存视图
    /// </summary>
    /// <param name="materielCode"></param>
    /// <param name="viewDto"></param>
    /// <returns></returns>
    List<StockSelectViewDTO> GetStockSelectViews(string materielCode);
    List<StockSelectViewDTO> GetStockSelectViews(GetStockSelectViewDto viewDto);
    /// <summary>
    /// ç»„盘
    /// </summary>
    /// <param name="groupPlate"></param>
    /// <returns></returns>
    Task<WebResponseContent> AddGroupPlateAsync(GroupPlate groupPlate);
    /// <summary>
    /// è§£ç›˜
    /// </summary>
    /// <param name="groupPlate"></param>
    /// <returns></returns>
    Task<WebResponseContent> DeleteGroupPlateAsync(GroupPlate groupPlate);
    List<DtLocationInfo> GetStockLocations(List<DtLocationInfo>? locations);
    /// <summary>
    /// æ ¹æ®è¯·æ±‚出库任务
    /// </summary>
    /// <param name="requestOut"></param>
    /// <returns></returns>
    WebResponseContent GenerateOutboundTask(GenerateOutTaskDto requestOut);
    WebResponseContent GetStockView(GetStockSelectViewDto viewDto);
    Task<WebResponseContent> GetStockData();
    Task<WebResponseContent> PrintOrder(object[] key);
}