Commit 07fb50b8 LN

如果是入料三入库,且进仓19,进仓20需要空托盘,先放托盘经过

1 个父辈 f9d5f91d
......@@ -1771,8 +1771,22 @@ namespace OnlineStore.DeviceLibrary
{
return true;
}
} //如果是入料三入库,且进仓19,进仓20需要空托盘,先放托盘经过
if (DeviceID.Equals(103))
{
MoveEquip moveEquip19 = LineManager.Line.GetMoveByDId(19);
if (moveEquip19.IsWaitEmptyTray())
{
return true;
}
MoveEquip moveEquip20 = LineManager.Line.GetMoveByDId(20);
if (moveEquip20.IsWaitEmptyTray())
{
return true;
}
}
}
catch (Exception ex)
{
LogUtil.error("NeedEmptyTrayGo出错:" + ex.ToString());
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!