|
|
|
@ -175,6 +175,21 @@ namespace Rs.MotionPlat.Flow
|
|
|
|
|
case EGrrFlowStep.等待启动:
|
|
|
|
|
needGrrFixtureList.Clear();
|
|
|
|
|
needGrrFixtureList = TestFixtureManager.Instance.GetEnableFixtureList();
|
|
|
|
|
if(needGrrFixtureList != null)
|
|
|
|
|
{
|
|
|
|
|
int i = 0;
|
|
|
|
|
foreach (TestFixture testFixture in needGrrFixtureList)
|
|
|
|
|
{
|
|
|
|
|
if(i==0)
|
|
|
|
|
{
|
|
|
|
|
needGrrFixtureList[i].IsFirstFixture = true;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
needGrrFixtureList[i].IsFirstFixture = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
flowStep = EGrrFlowStep.判断是否需要从料仓取料;
|
|
|
|
|
break;
|
|
|
|
|
#region 料仓取料
|
|
|
|
|