This commit is contained in:
alex
2023-09-05 17:40:39 +08:00
parent a6fdf64681
commit b5feba2109

View File

@@ -111,7 +111,7 @@ namespace Tnb.WarehouseMgr
List<WmsCarryCode>? carryCodesPart = await _db.Queryable<WmsCarryH>().InnerJoin<WmsCarryCode>((a, b) => a.id == b.carry_id).InnerJoin<BasLocation>((a, b, c) => a.location_id == c.id)
.Where(whereExp)
.Select<WmsCarryCode>()
.ToListAsync(); ;
.ToListAsync();
if (carryCodesPart?.Count > 0)
{