箱库存-修改

This commit is contained in:
tongfei
2023-11-23 16:03:16 +08:00
parent eb73e30fc6
commit 57e2b755de
8 changed files with 120 additions and 2 deletions

View File

@@ -146,7 +146,7 @@ namespace WMS.Web.Repositories
/// <returns></returns>
public async Task<List<BoxInventory>> GetList(List<int> ids)
{
return await _context.BoxInventory.Include(x => x.Details).Where(x => ids.Contains(x.Id)).ToListAsync();
return await _context.BoxInventory.Include(x => x.Details).Where(x => ids.Contains(x.BoxId)).ToListAsync();
}
/// <summary>