This commit is contained in:
tongfei
2023-12-29 10:54:56 +08:00
2 changed files with 2 additions and 2 deletions

View File

@@ -113,7 +113,7 @@ namespace WMS.Web.Repositories
{
var res = await _context.MoveBoxRecord
.Include(s => s.Details)
.Where(f => f.BoxId==boxId)
.Where(f => f.BoxId == boxId && f.Type == MoveBoxType.Down)
.OrderByDescending(o => o.Id)
.ToListAsync();
List<BoxDetailResponse> details = new List<BoxDetailResponse>();