1、临时屏蔽治具残留检测

2、增加版本号:2.20.24.15
master
lhiven 1 year ago
parent 69a1d7bcdf
commit d32fcdbc43

@ -2180,9 +2180,12 @@ namespace Rs.MotionPlat.Flow
VacManager.TestTrayVacSuction(EVacOperator.Open, true, TestTrayManager.Instance.Slots.Select(s => s.Index).ToArray());
foreach (TestTraySlot slot in TestTrayManager.Instance.Slots)
{
if (Ops.IsOn($"测试{slot.Index}号穴位真空吸检测"))
if(!GlobalVar.DisableFixtureVacuumCheck)
{
testTrayHasProductList.Add(slot.Index);
if (Ops.IsOn($"测试{slot.Index}号穴位真空吸检测"))
{
//testTrayHasProductList.Add(slot.Index);
}
}
}
VacManager.TestTrayVacSuction(EVacOperator.Close, true, TestTrayManager.Instance.Slots.Select(s => s.Index).ToArray());

@ -352,7 +352,7 @@ namespace Rs.MotionPlat.Flow.SubFlow
singleResult.SlotIndex = SlotIndex;
exit = true;
logInfo = GetClassName() + "拍照处理完成";
MessageQueue.Instance.Warn(logInfo);
MessageQueue.Instance.Insert(logInfo);
break;
}
}

@ -31,6 +31,6 @@ using System.Runtime.InteropServices;
//
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示:
[assembly: AssemblyVersion("2.20.24.11")]
[assembly: AssemblyVersion("2.20.24.15")]
//[assembly: AssemblyVersion("1.0.0.0")]
//[assembly: AssemblyFileVersion("1.0.0.0")]

Loading…
Cancel
Save