removed makeup wafer qa met check until a new solution is ready

This commit is contained in:
Infineon\StieberD
2025-09-18 12:36:28 -07:00
parent 537d46ba21
commit 8c11300455

View File

@ -421,9 +421,11 @@ end service
Service GetQAMetComplete(WOMatKey) Service GetQAMetComplete(WOMatKey)
ErrorMsg = ''
Response = True$
If WOMatKey NE '' then If WOMatKey NE '' then
If Rowexists('WO_MAT_QA', WOMatKey) then If Rowexists('WO_MAT_QA', WOMatKey) then
Response = ''
QAMetRec = Database_Services('ReadDataRow', 'WO_MAT_QA', WOMatKey, '', True$, 0, False$) QAMetRec = Database_Services('ReadDataRow', 'WO_MAT_QA', WOMatKey, '', True$, 0, False$)
Stages = QAMetRec<WO_MAT_QA_STAGE$> Stages = QAMetRec<WO_MAT_QA_STAGE$>
Results = QAMetRec<WO_MAT_QA_RESULT$> Results = QAMetRec<WO_MAT_QA_RESULT$>
@ -436,16 +438,17 @@ Service GetQAMetComplete(WOMatKey)
end end
Until Response EQ False$ Until Response EQ False$
Next I Next I
If Response = '' then
Response = Wo_Mat_Qa_Services('GetMUWaferQAComplete', WOMatKey)
end
end else end else
Response = True$ Response = True$
end end
end else end else
Error_Services('Add', 'Missing WOMatKey parameter.') ErrorMsg = 'Missing WOMatKey parameter.'
Response = False$
end end
If ErrorMsg NE '' then
Error_Services('Add', ErrorMsg)
end
end service end service
@ -497,4 +500,3 @@ Service GetMUWaferQAComplete(WOMatKey)
end service end service