diff --git a/ReportingServices.UI/Views/ProductionReport/DailyReport.cshtml b/ReportingServices.UI/Views/ProductionReport/DailyReport.cshtml index c41987b..f236813 100644 --- a/ReportingServices.UI/Views/ProductionReport/DailyReport.cshtml +++ b/ReportingServices.UI/Views/ProductionReport/DailyReport.cshtml @@ -560,4 +560,38 @@ - \ No newline at end of file + +
+ + + + + + + + + + + + + + + + + + + + + +
Day ShiftStateLoaded RDSAverage TemperatureOffset %Time CollectedHours Night ShiftStateLoaded RDSAverage TemperatureOffset %Time CollectedHours
+
+ + \ No newline at end of file diff --git a/ReportingServices.UI/wwwroot/js/site.js b/ReportingServices.UI/wwwroot/js/site.js index 4ef2e87..549ccb6 100644 --- a/ReportingServices.UI/wwwroot/js/site.js +++ b/ReportingServices.UI/wwwroot/js/site.js @@ -152,7 +152,7 @@ function expandYield() { icons[i].classList.toggle("fa-minus-circle"); } - + } function toggleWeek() { @@ -223,3 +223,21 @@ function compareStrings(isDate, dir, string1, string2) { return false; } + +function appendDiv() { + const tbody = document.getElementById("EpiProTempVerification"); + $.ajax({ + type: "GET", + url: 'https://oi-metrology-viewer-prod.mes.infineon.com/api/InfinityQSV3/epi-pro-temp-verification/?night=44&night=46&night=52&night=54', + success: function (r) { + if (r == null) + ShowErrorMessage("Invalid data"); + else { + tbody.innerHTML = r; + } + }, + error: function (e, _ajaxOptions, ex) { + DisplayWSMessage("error", "There was an error getting data.", e, ex); + } + }); +}