Created methods to provide Metrology Services with JSON source for SLL Section

This commit is contained in:
Infineon\Ouellette
2025-08-12 17:44:49 -07:00
committed by Ouellette Jonathan (CSC FI SPS MESLEO)
parent 14331fcf49
commit 09d2d13e63
3 changed files with 86 additions and 1 deletions

View File

@ -137,6 +137,11 @@ CreateHALItem:
RepJSON = Report_Services('GetOpenTestWaferLotWIPReportJson')
Case ReportID = 'OpenNCRReport'
RepJson = Report_Services('GetOpenNCRReportJson')
Case ReportID = 'SLLReport'
//Single Load Lock Report from Metrology Services
ReportStartDtm = Http_Services('GetQueryField', 'StartDate')
ReportEndDtm = Http_Services('GetQueryField', 'EndDate')
RepJson = Report_Services('GetSLLReportJson', ReportStartDtm, ReportEndDtm)
Case Otherwise$
Error_Services('Add', 'Unsupported report')
End Case
@ -233,3 +238,4 @@ API reports.GET
HTTP_Resource_Services('LoremIpsum')
end api