二楼空托到码垛线,库存报表变更

This commit is contained in:
2024-07-22 10:59:20 +08:00
parent 9c8d50022c
commit 401d921f49
6 changed files with 334 additions and 41 deletions

View File

@@ -586,7 +586,7 @@ namespace Tnb.WarehouseMgr
List<Tuple<WmsCarryH, decimal, BasLocation>>? carrys = new List<Tuple<WmsCarryH, decimal, BasLocation>>();
// 6个下发一条任务链
int move_num = 6;
int move_num = 6;
int endlocation_index = 0;
BasLocation endlocation_ssx = null;
@@ -602,7 +602,7 @@ namespace Tnb.WarehouseMgr
// 每6个重新获取一次终点
if (i % move_num == 0)
if (i % move_num == 0)
{
endlocation_ssx = await _db.Queryable<BasLocation>().Where(r => input.endlocations.Contains(r.id)).OrderBy("is_lock, task_nums, location_code").FirstAsync();
}