修复bug
This commit is contained in:
@@ -168,7 +168,7 @@ namespace WMS.Web.Repositories
|
|||||||
public async Task<List<OutStockTask>> GetEntityList(List<int> ids)
|
public async Task<List<OutStockTask>> GetEntityList(List<int> ids)
|
||||||
{
|
{
|
||||||
var res = await _context.OutStockTask
|
var res = await _context.OutStockTask
|
||||||
.Include(s => s.Details)
|
.Include(s => s.Details).ThenInclude(s => s.ErpDetails)
|
||||||
.Where(f => ids.Contains(f.Id))
|
.Where(f => ids.Contains(f.Id))
|
||||||
.ToListAsync();
|
.ToListAsync();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user