Added data pull for previous week and capability for production passdown to view previous week data, added tool state mapping json file and production passdown report shows owners, removed unnecessary jQuery package.

This commit is contained in:
Daniel Wathen
2022-12-07 10:44:11 -07:00
parent 3409ad58b7
commit 4592b035b6
16 changed files with 651 additions and 576 deletions

View File

@ -150,4 +150,12 @@ function expandYield() {
document.getElementById("yieldImage").src = "../Images/minusIcon.png";
else
document.getElementById("yieldImage").src = "../Images/plusIcon.png";
}
function toggleWeek() {
var rptTableDiv = document.getElementsByClassName("dailyReportTable");
for (let i = 0; i < rptTableDiv.length; i++) {
rptTableDiv[i].classList.toggle("hidden");
}
}