This commit is contained in:
tongfei
2024-03-26 15:04:29 +08:00
parent 217b197ed5
commit df821329ef
4 changed files with 48 additions and 1 deletions

View File

@@ -2,6 +2,7 @@
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using WMS.Web.Core.Dto;
using WMS.Web.Core.Dto.Inventory;
using WMS.Web.Core.Internal.Results;
using WMS.Web.Domain.Entitys;
@@ -55,5 +56,14 @@ namespace WMS.Web.Domain.Infrastructure
/// <param name="orgCodes"></param>
/// <returns></returns>
Task<List<InventoryDetails>> GetListBy(List<string> materialNumbers, List<string> stockCodes, List<string> orgCodes);
/// <summary>
/// 获取物料对应的仓位集合
/// </summary>
/// <param name="materialNumbers"></param>
/// <param name="stockCodes"></param>
/// <param name="companyId"></param>
/// <returns></returns>
Task<List<MaterialSubStock>> GetMaterialSubStocks(List<string> materialNumbers, List<string> stockCodes, int companyId);
}
}