修改任务起始值

This commit is contained in:
2023-11-13 15:23:09 +08:00
parent 82909e116d
commit 8ee8fe995e
2 changed files with 2 additions and 2 deletions

View File

@@ -112,7 +112,7 @@ namespace Tnb.WarehouseMgr
{
int min = (carrys.Count > setQty.qty) ? setQty.qty : carrys.Count;
//当出现多个载具同时出库,可能需要进入电梯时
int ele = 3;
int ele = 2;
for (int i = 0; i < min; i++)
{
sPoint = await _db.Queryable<WmsPointH>().FirstAsync(it => it.location_id == carrys[i].location_id);

View File

@@ -266,7 +266,7 @@ namespace Tnb.WarehouseMgr
List<WmsPretaskH> preTasks = new();
List<string> locIds = new();
//当出现多个载具同时出库,可能需要进入电梯时
int ele = 3;
int ele = 2;
foreach (WmsCarryH carry in carrys)
{