erp调整

This commit is contained in:
18942506660
2023-12-08 17:53:55 +08:00
parent b47eaa5dc4
commit c0026a3717
7 changed files with 124 additions and 44 deletions

View File

@@ -235,7 +235,8 @@ namespace WMS.Web.Repositories
public async Task<List<OutStock>> GetEntityList(List<int> ids)
{
var res = await _context.OutStock
.Include(s => s.Details).ThenInclude(s => s.ErpDetails)
.Include(s => s.Details)
.ThenInclude(s => s.ErpDetails)
.Where(f => ids.Contains(f.Id))
.ToListAsync();