1
huangxiaoqiang
2025-10-23 82149871f30f4564d84272649352496a2ab0a38e
ÏîÄ¿´úÂë/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>
    Task<WebResponseContent> GenerateOutboundTask(GenerateOutTaskDto requestOut);
}