解决代码冲突
This commit is contained in:
@@ -243,6 +243,7 @@ namespace Tnb.WarehouseMgr
|
||||
endlocation_id = ePoint?.location_id!,
|
||||
endlocation_code = ePoint?.location_code!,
|
||||
startpoint_id = sPoint?.id!,
|
||||
startpoint_code = sPoint?.point_code!,
|
||||
endpoint_id = ePoint?.id!,
|
||||
endpoint_code = ePoint?.point_code!,
|
||||
start_floor = sPoint?.floor.ToString(),
|
||||
@@ -391,7 +392,7 @@ namespace Tnb.WarehouseMgr
|
||||
var carryCodes = await _db.Queryable<BasLocation>().InnerJoin<WmsCarryCode>((a, b) => a.id == b.location_id)
|
||||
.InnerJoin<WmsCarryH>((a, b, c) => b.carry_id == c.id)
|
||||
.Where(filterExp)
|
||||
.Select((a, b, c) => new WmsCarryCode { carry_code = c.carry_code }, true)
|
||||
.Select<WmsCarryCode>()
|
||||
.ToListAsync();
|
||||
|
||||
List<WmsCheckstockD> outputs = carryCodes.GroupBy(g => new { g.material_code, g.code_batch, g.location_code, g.carry_id }).Select(x => new WmsCheckstockD
|
||||
|
||||
Reference in New Issue
Block a user