移箱库存

This commit is contained in:
tongfei
2023-11-24 15:10:36 +08:00
parent 42ce73f920
commit 93466fe435

View File

@@ -150,7 +150,7 @@ namespace WMS.Web.Domain.Services
var InventoryInOutDetailsGenerateDtoList = new List<InventoryInOutDetailsGenerateDto>();
//2.箱库存集合
var boxIds = dtoDatas.Where(x => x.BoxId != 0 && x.Type == MoveBoxType.Down).GroupBy(x => x.BoxId).Select(x => x.Key).ToList();
var boxIds = dtoDatas.GroupBy(x => x.BoxId).Select(x => x.Key).ToList();
var boxInventorys = await _boxInventoryRepositories.GetList(boxIds);
//2.1箱基本信息