Commit aef9ef72 LN

等待仓门口物料拿走报警时间加长

1 个父辈 a6fa6e24
...@@ -753,6 +753,14 @@ namespace OnlineStore.DeviceLibrary ...@@ -753,6 +753,14 @@ namespace OnlineStore.DeviceLibrary
OutStoreLog("出库:SO_15_WaitTake 等待拿走物品,最多等待" + OutStoreWaitSeconds + "秒"); OutStoreLog("出库:SO_15_WaitTake 等待拿走物品,最多等待" + OutStoreWaitSeconds + "秒");
StoreMove.WaitList.Add(WaitResultInfo.WaitTime(ms)); StoreMove.WaitList.Add(WaitResultInfo.WaitTime(ms));
StoreMove.WaitList.Add(WaitResultInfo.WaitHeight(0)); StoreMove.WaitList.Add(WaitResultInfo.WaitHeight(0));
if(OutStoreWaitSeconds > 120)
{
StoreMove.TimeOutSeconds = 120;
}
else
{
StoreMove.TimeOutSeconds = OutStoreWaitSeconds;
}
StoreMove.OneWaitCanEndStep = true; StoreMove.OneWaitCanEndStep = true;
} }
else else
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!