修复bug

This commit is contained in:
18942506660
2023-12-29 10:45:50 +08:00
parent 1554afbbf5
commit 9756aea807
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>();