epi-pro-reactor-pm-verification ready to test
This commit is contained in:
@ -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);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user