From b7392b564b8ab6d987e449a5b412273e8c89112c Mon Sep 17 00:00:00 2001
From: LAPTOP-SNT8I5JK\Boounion <Chenluhua@qq.com>
Date: 星期四, 15 五月 2025 11:09:43 +0800
Subject: [PATCH] 1.Bonder进料检测和限制;

---
 SourceCode/Bond/Servo/CAligner.cpp |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)

diff --git a/SourceCode/Bond/Servo/CAligner.cpp b/SourceCode/Bond/Servo/CAligner.cpp
index dc4a93b..e07f04e 100644
--- a/SourceCode/Bond/Servo/CAligner.cpp
+++ b/SourceCode/Bond/Servo/CAligner.cpp
@@ -68,4 +68,24 @@
 
 		return m_glassList.empty();
 	}
+
+	BOOL CAligner::onPreStoredJob(int port, CJobDataB* pJobDataB)
+	{
+		CJobDataS* pJobDataS = getJobDataS(pJobDataB->getCassetteSequenceNo(), pJobDataB->getJobSequenceNo());
+		if (pJobDataS == nullptr) {
+			LOGE("<CAligner-%s>onPreFetchedOutJob,找不到对应的JobDataS(CassetteSequenceNo:%d, JobSequenceNo:%d), 注意排查风险!", m_strName.c_str(),
+				pJobDataB->getCassetteSequenceNo(), pJobDataB->getJobSequenceNo());
+			return FALSE;
+		}
+
+		// 只能一片一片的对位
+		Lock();
+		if (!m_glassList.empty()) {
+			Unlock();
+			LOGE("<CEquipment-%s>onPreFetchedOutJob,当前机器或单元存在玻璃片,不能进料,请注意风险!", m_strName.c_str());
+			return FALSE;
+		}
+
+		return TRUE;
+	}
 }

--
Gitblit v1.9.3