1
huangxiaoqiang
2025-10-22 d4b0b578752a1478f6c11b352fbb8d2bad1f9e1d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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);
}