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:
@ -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");
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user