找到已收货的箱子
This commit is contained in:
@@ -4,6 +4,7 @@ using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WMS.Web.Core.Dto;
|
||||
using WMS.Web.Core.Dto.InStock;
|
||||
using WMS.Web.Core.Dto.InStockTask;
|
||||
using WMS.Web.Core.Internal.Results;
|
||||
using WMS.Web.Domain.Entitys;
|
||||
|
||||
@@ -73,5 +74,12 @@ namespace WMS.Web.Domain.Infrastructure
|
||||
/// <param name="ids"></param>
|
||||
/// <returns></returns>
|
||||
Task<List<InStock>> GetList(List<int> ids);
|
||||
|
||||
/// <summary>
|
||||
/// 获取-已入库的箱
|
||||
/// </summary>
|
||||
/// <param name="taskId"></param>
|
||||
/// <returns></returns>
|
||||
Task<List<ReceiveBoxResponse>> GetInstockBox(int taskId);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -79,6 +79,13 @@ namespace WMS.Web.Domain.Infrastructure
|
||||
/// <returns></returns>
|
||||
Task<List<SourceBillNoNoPurchaseQueryResponse>> GetListInfoBy(InStockTaskBillNoQueryRequest dto);
|
||||
|
||||
/// <summary>
|
||||
/// 获取-已收货的箱子
|
||||
/// </summary>
|
||||
/// <param name="taskId"></param>
|
||||
/// <returns></returns>
|
||||
Task<List<ReceiveBoxResponse>> GetReceiveBox(int taskId);
|
||||
|
||||
/// <summary>
|
||||
/// 批量添加
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user