This commit is contained in:
alex
2023-07-25 10:18:35 +08:00
parent efa35b2f1a
commit 08694f7845

View File

@@ -242,12 +242,12 @@ namespace Tnb.WarehouseMgr
end = Math.Min((end + moveNum), arrary.Length);
}
}
foreach (var (k, v) in dic)
foreach (var (i, v) in dic)
{
foreach (var it in v)
{
it.groups = groupCode;
it.bill_code = $"{groupCode}-{k}";
it.bill_code = $"{groupCode}-{i}";
}
}
}