Kalkulator efektywności - OEE: Różnice pomiędzy wersjami

m
brak opisu edycji
mNie podano opisu zmian
mNie podano opisu zmian
Linia 29: Linia 29:
           var OEE = A*E*Q;
           var OEE = A*E*Q;


           A = A.toFixed(2);
           A = A.toFixed(2)*100;
           E = E.toFixed(2);
           E = E.toFixed(2)*100;
           Q = Q.toFixed(2);
           Q = Q.toFixed(2)*100;
           OEE = OEE.toFixed(2);
           OEE = OEE.toFixed(2)*100;


           $("#A").text("Dostępność (A): " + APT + "/" + PBT + " = " + A);
           $("#A").text("Dostępność (A): " + APT + "/" + PBT + " = " + A + "%");
           $("#E").text("Wydajność (E): " + PRI + "/(" + APT + "/" + PQ + ") = " + E);
           $("#E").text("Wydajność (E): " + PRI + "/(" + APT + "/" + PQ + ") = " + E + "%");
           $("#Q").text("Jakość (Q): " + GQ + "/" + PQ + " = " + Q);
           $("#Q").text("Jakość (Q): " + GQ + "/" + PQ + " = " + Q + "%");
           $("#OEE").text("Wskaźnik OEE: " + A + " * " + E + " * " + Q + " = " + OEE);
           $("#OEE").text("Wskaźnik OEE: " + A + " * " + E + " * " + Q + " = " + OEE + "%");
         });
         });
       });
       });