|
|
|
@ -1,4 +1,5 @@
|
|
|
|
|
$(() => {
|
|
|
|
|
|
|
|
|
|
//班组计划统计
|
|
|
|
|
// onDutyPlan(1234, 1202, 33);
|
|
|
|
|
$.getJSON('/foamBox/getTeamStatisticsJson', function (result) {
|
|
|
|
@ -6,11 +7,13 @@ $(() => {
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//设备运行状态
|
|
|
|
|
let statusArray = [0, 0, 0, 0, 1, 0];
|
|
|
|
|
deviceStatus(statusArray);
|
|
|
|
|
$.getJSON(`/foamBox/getRunStatusJson?ids=${ids}`, function (result) {
|
|
|
|
|
deviceStatus(result);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//库存统计
|
|
|
|
|
$.getJSON('/foamBox/getMaterialStoreJson', function (result) {
|
|
|
|
|
$.getJSON(`/foamBox/getMaterialStoreJson`, function (result) {
|
|
|
|
|
threeDimensionalCylindrical(result, document.getElementById("inventoryStatistics"));
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
@ -142,3 +145,4 @@ const deviceStatus = (statusArray) => {
|
|
|
|
|
$(".foamingLineRunStatus table tr").append(info);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|