From e2289d69a5e7b2ffd6e835d1d0101d90b91b5482 Mon Sep 17 00:00:00 2001 From: lhiven Date: Tue, 6 Aug 2024 08:30:48 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=BD=93=E6=94=BE=E6=96=99?= =?UTF-8?q?=E5=88=B0retest=E7=9B=98=E6=97=B6=EF=BC=8C=E4=B8=8D=E8=AE=A1?= =?UTF-8?q?=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Rs.DeweyTester/Flow/SubFlow/StockPlaceFlow.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Rs.DeweyTester/Flow/SubFlow/StockPlaceFlow.cs b/Rs.DeweyTester/Flow/SubFlow/StockPlaceFlow.cs index e5853b9..67c630a 100644 --- a/Rs.DeweyTester/Flow/SubFlow/StockPlaceFlow.cs +++ b/Rs.DeweyTester/Flow/SubFlow/StockPlaceFlow.cs @@ -256,7 +256,10 @@ namespace Rs.MotionPlat.Flow.SubFlow { 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}穴位"; MessageQueue.Instance.Insert(logInfo); tray.ChangeStatus(curPlaceSlot.Index, ESlotStatus.Have);