-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
297 lines (276 loc) · 8.8 KB
/
resume.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Atendimento das Ordens de Manutenção</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
overflow: hidden; /* Adicione isso */
}
.header,
.footer {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
font-size: 10px;
font-weight: bold;
box-sizing: border-box; /* Adicione isso */
}
.header img {
width: 250px;
margin-top: 20px;
box-sizing: border-box; /* Adicione isso */
}
.title {
margin-right: -72px;
font-size: 24px;
font-weight: bold;
box-sizing: border-box; /* Adicione isso */
}
.subtitle {
text-align: center;
font-size: 30px;
font-weight: bold;
margin-top: -5px;
margin-bottom: 10px;
box-sizing: border-box; /* Adicione isso */
}
.relogio {
font-size: 18px;
margin-right: 50px;
margin-top: 20px;
box-sizing: border-box; /* Adicione isso */
}
table {
width: 100%;
font-size: 16px;
font-weight: bold;
border-collapse: collapse; /* Adicione isso */
box-sizing: border-box; /* Adicione isso */
}
th,
td {
border: 2px solid black;
padding: 8px;
text-align: center;
box-sizing: border-box; /* Adicione isso */
}
th {
background-color: #292929;
color: white;
}
.em-atendimento {
background-color: blue;
color: white;
}
.em-validacao {
background-color: green;
color: white;
}
.aguardando-atendimento {
background-color: yellow;
color: black;
}
.pausadas {
background-color: brown;
color: white;
}
.nao-validadas {
background-color: red;
color: white;
}
.pagination {
text-align: center;
margin-top: 10px;
}
.pagination button {
margin: 5px;
cursor: pointer;
}
.chart-container {
width: 43%;
margin: 0 auto;
padding: 20px;
margin-top: -107px; /* Ajuste conforme necessário */
margin-right: 300px;
box-sizing: border-box; /* Adicione isso */
}
</style>
</head>
<body>
<div class="header">
<img class="sabo" src="assets/Sabó claro recortado.png" alt="Logo" />
<div class="title">ATENDIMENTO DAS ORDENS DE MANUTENÇÃO</div>
<div class="relogio">28 MAI 24 - 14:00:46 - PÁG.01</div>
</div>
<div class="subtitle">- TOTAL GERAL -</div>
<table>
<thead>
<tr>
<th>TIPO DE ORDEM</th>
<th>QUANTIDADE</th>
<th>PERCENTUAL</th>
</tr>
</thead>
<tbody>
<tr class="em-atendimento">
<td>TOTAL DE ORDENS EM ATENDIMENTO:</td>
<td id="em-atendimento-quantidade"></td>
<td id="em-atendimento-percentual"></td>
</tr>
<tr class="em-validacao">
<td>TOTAL DE ORDENS EM VALIDACAO:</td>
<td id="em-validacao-quantidade"></td>
<td id="em-validacao-percentual"></td>
</tr>
<tr class="aguardando-atendimento">
<td>TOTAL DE ORDENS AGUARDANDO ATENDIMENTO:</td>
<td id="aguardando-atendimento-quantidade"></td>
<td id="aguardando-atendimento-percentual"></td>
</tr>
<tr class="pausadas">
<td>TOTAL DE ORDENS PAUSADAS:</td>
<td id="pausadas-quantidade"></td>
<td id="pausadas-percentual"></td>
</tr>
<tr class="nao-validadas">
<td>TOTAL DE ORDENS NAO VALIDADAS:</td>
<td id="nao-validadas-quantidade"></td>
<td id="nao-validadas-percentual"></td>
</tr>
<tr>
<td colspan="2">TOTAL DE ORDENS:</td>
<td id="total-ordens"></td>
</tr>
</tbody>
</table>
<div class="chart-container">
<canvas id="myPieChart"></canvas>
</div>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script>
window.onload = function () {
updateClock();
setInterval(updateClock, 1000);
fetchDataAndUpdateTable();
};
function updateClock() {
const now = new Date();
const formattedDate = now.toLocaleDateString("pt-BR");
const formattedTime = now.toLocaleTimeString("pt-BR");
document.querySelector(
".relogio"
).innerText = `Data: ${formattedDate} Hora: ${formattedTime}`;
}
async function fetchDataAndUpdateTable() {
const response = await fetch("formatado.txt");
const data = await response.text();
const orders = data.trim().split("\n");
const orderCounts = { W: 0, A: 0, V: 0, O: 0, N: 0 };
orders.forEach((order) => {
const type = order.charAt(0);
if (orderCounts.hasOwnProperty(type)) {
orderCounts[type]++;
}
});
const totalOrders = Object.values(orderCounts).reduce(
(a, b) => a + b,
0
);
document.getElementById("em-atendimento-quantidade").innerText =
orderCounts["A"];
document.getElementById("em-atendimento-percentual").innerText =
((orderCounts["A"] / totalOrders) * 100).toFixed(2) + "%";
document.getElementById("em-validacao-quantidade").innerText =
orderCounts["V"];
document.getElementById("em-validacao-percentual").innerText =
((orderCounts["V"] / totalOrders) * 100).toFixed(2) + "%";
document.getElementById("aguardando-atendimento-quantidade").innerText =
orderCounts["W"];
document.getElementById("aguardando-atendimento-percentual").innerText =
((orderCounts["W"] / totalOrders) * 100).toFixed(2) + "%";
document.getElementById("pausadas-quantidade").innerText =
orderCounts["O"];
document.getElementById("pausadas-percentual").innerText =
((orderCounts["O"] / totalOrders) * 100).toFixed(2) + "%";
document.getElementById("nao-validadas-quantidade").innerText =
orderCounts["N"];
document.getElementById("nao-validadas-percentual").innerText =
((orderCounts["N"] / totalOrders) * 100).toFixed(2) + "%";
document.getElementById("total-ordens").innerText = totalOrders;
createPieChart(orderCounts, totalOrders);
}
function createPieChart(orderCounts, totalOrders) {
Chart.register(ChartDataLabels); // Adicione essa linha para registrar o plugin
const ctx = document.getElementById("myPieChart").getContext("2d");
const data = {
labels: [
"Em Atendimento",
"Em Validação",
"Aguardando Atendimento",
"Pausadas",
"Não Validadas",
],
datasets: [
{
data: [
orderCounts["A"],
orderCounts["V"],
orderCounts["W"],
orderCounts["O"],
orderCounts["N"],
],
backgroundColor: ["blue", "green", "yellow", "brown", "red"],
},
],
};
const options = {
responsive: true,
plugins: {
legend: {
position: "right",
},
tooltip: {
callbacks: {
label: function (context) {
const label = context.label || "";
const value = context.raw || 0;
const percentage =
((value / totalOrders) * 100).toFixed(2) + "%";
return `${label}: ${value} (${percentage})`;
},
},
},
datalabels: {
formatter: (value, ctx) => {
const percentage =
((value / totalOrders) * 100).toFixed(2) + "%";
return percentage;
},
display: 'auto', // Adicione essa linha para exibir as labels automaticamente
color: "black", // Cor do texto
font: {
weight: "bold", // Peso da fonte
size: 15,
},
},
},
};
new Chart(ctx, {
type: "pie",
data: data,
options: options,
});
}
setTimeout(function () {
window.location.href = "index.html";
}, 10000); // 15 segundos em milissegundos
</script>
</body>
</html>