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