1
huangxiaoqiang
2025-10-22 d4b0b578752a1478f6c11b352fbb8d2bad1f9e1d
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSServer/WIDESEA_IStorageBasicService/Stock/IStockInfoService.cs
@@ -1,6 +1,35 @@
namespace WIDESEA_IStorageBasicService;
using WIDESEA_DTO.Basic;
using WIDESEA_DTO.Stock;
namespace WIDESEA_IStorageBasicService;
public interface IStockInfoService : IService<DtStockInfo>
{
    /// <summary>
    /// æ ¹æ®ç‰©æ–™ç¼–码获取库存可用量视图
    /// </summary>
    /// <param name="materielCode"></param>
    /// <returns></returns>
    List<StockSelectViewDTO> GetStockSelectViews(string materielCode);
    /// <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);
    /// <summary>
    /// æ ¹æ®è¯·æ±‚出库任务
    /// </summary>
    /// <param name="requestOut"></param>
    /// <returns></returns>
    WebResponseContent GenerateOutboundTask(GenerateOutTaskDto requestOut);
}