优化当放料到retest盘时,不计数

master
lhiven 10 months ago
parent 6c94ae6f15
commit e2289d69a5

@ -256,7 +256,10 @@ namespace Rs.MotionPlat.Flow.SubFlow
{ {
if(curNozzle.Product!=null) if(curNozzle.Product!=null)
{ {
PlaceFinishedEvent?.Invoke(curNozzle.Product); if(trayType != ETrayType.ReTest)
{
PlaceFinishedEvent?.Invoke(curNozzle.Product);
}
logInfo = $"{GetClassName()}检测到吸嘴{curNozzle.NozzleIndex}无粘料,吸嘴{curNozzle.NozzleIndex}把产品SN:{curNozzle.Product.SN}放入OK料盘{curPlaceSlot.Index}穴位"; logInfo = $"{GetClassName()}检测到吸嘴{curNozzle.NozzleIndex}无粘料,吸嘴{curNozzle.NozzleIndex}把产品SN:{curNozzle.Product.SN}放入OK料盘{curPlaceSlot.Index}穴位";
MessageQueue.Instance.Insert(logInfo); MessageQueue.Instance.Insert(logInfo);
tray.ChangeStatus(curPlaceSlot.Index, ESlotStatus.Have); tray.ChangeStatus(curPlaceSlot.Index, ESlotStatus.Have);

Loading…
Cancel
Save