1
This commit is contained in:
@@ -504,7 +504,7 @@ namespace Tnb.WarehouseMgr
|
||||
List<WmsCarryH> carryIts = new();
|
||||
List<WmsCarryCode> carryCodeIts = new();
|
||||
List<BasLocation> locIts = new();
|
||||
for (int i = 0; i < multiList.Count; i++)
|
||||
for (int i = 0, cnt = multiList.Count; i < cnt; i++)
|
||||
{
|
||||
WmsCarryH carry = new()
|
||||
{
|
||||
@@ -529,7 +529,7 @@ namespace Tnb.WarehouseMgr
|
||||
loc.is_use = ((int)EnumCarryStatus.占用).ToString();
|
||||
}
|
||||
locIts.Add(loc);
|
||||
|
||||
|
||||
}
|
||||
await _db.Updateable(carryIts).UpdateColumns(it => new { it.is_lock, it.location_id, it.location_code }).ExecuteCommandAsync();
|
||||
//更新条码的库位和仓库信息
|
||||
|
||||
Reference in New Issue
Block a user