-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
validados.php
338 lines (296 loc) · 9.58 KB
/
validados.php
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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
<?php
// Definir informações de conexão com o banco de dados
$servidor = 'localhost'; // Altere para o servidor de banco de dados
$usuario = 'usuario'; // Altere para o nome de usuário do banco de dados
$senha = 'senha'; // Altere para a senha do banco de dados
$bd = 'database'; // Altere para o nome do banco de dados
// Criar conexão com o banco de dados
$conn = new mysqli($servidor, $usuario, $senha, $bd);
// Verificar se a conexão foi estabelecida corretamente
if ($conn->connect_error) {
die('Conexão não estabelecida: ' . $conn->connect_error);
}
try {
// Obter o último atendimento registrado
$sql_atendimento = "
SELECT
a.senha AS senha_gerada,
a.tipo_atendimento, -- Alterado de tipo_senha para tipo_atendimento
a.cpf AS id_cliente, -- Alterado de id_cliente para cpf, já que a tabela 'atendimentos' não possui 'id_cliente'
a.id AS atendimento_id
FROM atendimentos a
ORDER BY a.id DESC
LIMIT 1
";
$result = $conn->query($sql_atendimento);
if ($result->num_rows > 0) {
// Obter os dados do atendimento
$atendimento = $result->fetch_assoc();
// Obter as informações do cliente correspondente
$sql_cliente = "
SELECT
c.nome,
SUBSTRING(c.cpf, 1, 3) AS cpf
FROM clientes c
WHERE c.cpf = ? -- Alterado de c.id para c.cpf, já que 'atendimentos' usa CPF e não ID
";
$stmt = $conn->prepare($sql_cliente);
$stmt->bind_param("s", $atendimento['id_cliente']);
$stmt->execute();
$resultado_cliente = $stmt->get_result();
$cliente = $resultado_cliente->fetch_assoc();
// Obter a última senha gerada anteriormente
$sql_senhas_anteriores = "
SELECT senha
FROM atendimentos
WHERE id < ?
ORDER BY id DESC
LIMIT 1
";
$stmt = $conn->prepare($sql_senhas_anteriores);
$stmt->bind_param("i", $atendimento['atendimento_id']);
$stmt->execute();
$resultado = $stmt->get_result();
$senha_anterior = $resultado->num_rows > 0 ? $resultado->fetch_assoc()['senha'] : 'Nenhuma senha anterior';
} else {
// Se não houver atendimento, definir valores padrão
$cliente = [
'nome' => 'Nome do Cliente',
'cpf' => '---'
];
$atendimento = [
'senha_gerada' => '0000',
'tipo_atendimento' => 'normal', // Alterado para tipo_atendimento
'id_cliente' => 0
];
$senha_anterior = 'Nenhuma senha anterior';
}
} catch (Exception $e) {
// Exibir a mensagem de erro diretamente para diagnóstico
die('Erro ao consultar dados: ' . $e->getMessage());
}
// Fechar a conexão
$conn->close();
?>
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<link href="/img/att.jpg" rel="icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Painel de Atendimentos</title>
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<script src="lib/jquery-3.3.1.min.js"></script>
<script src="js/main.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<style>
body {
background-color: #ffffff;
color: #000000;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.barraSuperior {
background-color: #0056b3;
padding: 20px;
color: white;
height: 200px;
margin-bottom: 20px;
position: relative;
}
.uespiLogo {
height: 80px;
}
.uespiTexto {
font-size: 24px;
font-weight: bold;
}
.subtitulo {
font-size: 18px;
}
.container.page {
padding: 1px;
}
.campo-caixa {
background-color: #007bff;
border-radius: 5px;
padding: 20px;
font-size: 40px;
text-align: center;
color: white;
margin-bottom: 20px;
overflow: hidden;
}
.campo-caixa-usuario {
background-color: #ffff00;
color: #000000;
font-size: 40px;
padding: 20px;
font-weight: bold;
text-align: center;
border-radius: 5px;
}
.row {
margin-left: 0;
margin-right: 0;
}
.col-xs-6 {
padding-left: 10px;
padding-right: 10px;
}
.caixa-normal,
.caixa-anterior {
background-color: #0056b3;
border-radius: 5px;
padding: 20px;
font-size: 40px;
text-align: center;
color: white;
margin-bottom: 20px;
overflow: hidden;
}
@media (max-width: 767px) {
.col-xs-6 {
width: 100%;
padding-left: 0;
padding-right: 0;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.campo-caixa,
.caixa-normal,
.caixa-anterior {
font-size: 30px;
padding: 15px;
}
.campo-caixa-usuario {
font-size: 30px;
padding: 15px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.campo-caixa,
.caixa-normal,
.caixa-anterior {
font-size: 35px;
padding: 18px;
}
.campo-caixa-usuario {
font-size: 35px;
padding: 18px;
}
}
@media (min-width: 1200px) {
.campo-caixa,
.caixa-normal,
.caixa-anterior {
font-size: 40px;
padding: 20px;
}
.campo-caixa-usuario {
font-size: 40px;
padding: 20px;
}
}
.info-link {
display: inline-flex;
align-items: center;
margin-left: 10px;
font-size: 16px;
}
.info-link i {
margin-right: 5px;
font-size: 20px;
color: #007bff;
}
.footer {
background-color: #0056b3;
color: white;
text-align: center;
padding: 10px;
position: fixed;
width: 100%;
bottom: 0;
}
.footer a {
color: #ffff00;
text-decoration: none;
}
.footer a:hover {
text-decoration: underline;
}
</style>
<script>
// Função para tocar o áudio
function tocarAudio() {
const audio = document.getElementById('audioChamada');
audio.play();
}
// Função para narrar texto
function narrarTexto(texto) {
if ('speechSynthesis' in window) {
const utterance = new SpeechSynthesisUtterance(texto);
speechSynthesis.speak(utterance);
} else {
alert('Navegador não suporta síntese de fala.');
}
}
// Função para narrar o nome do cliente e a senha gerada ao carregar a página
function narrarInformacoes() {
const nomeCliente = document.getElementById('nomeCliente').textContent;
const senhaGerada = document.getElementById('senhaGerada').textContent;
narrarTexto(`Senha gerada para ${nomeCliente} é ${senhaGerada}`);
}
// Executa as funções quando a página é carregada
window.onload = function() {
tocarAudio(); // Toca o áudio
narrarInformacoes();
// Atualiza a página a cada 25 segundos
setInterval(function() {
location.reload();
}, 25000);
}
</script>
</head>
<body>
<header class="barraSuperior">
<div class="container">
<img src="/img/att.jpg" class="uespiLogo" alt="Logo">
<div class="uespiTexto">Sistema de Atendimento</div>
<div class="subtitulo">Gerenciamento de Senhas</div>
</div>
</header>
<div class="container page">
<div class="row">
<div class="col-xs-6">
<div class="campo-caixa" id="senhaGerada">
<?php echo $atendimento['senha_gerada']; ?>
</div>
</div>
<div class="col-xs-6">
<div class="campo-caixa-usuario" id="nomeCliente">
<?php echo $cliente['nome']; ?>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-6">
<div class="caixa-normal">
Tipo de Atendimento: <?php echo ucfirst($atendimento['tipo_atendimento']); ?>
</div>
</div>
<div class="col-xs-6">
<div class="caixa-anterior">
Última Senha: <?php echo $senha_anterior; ?>
</div>
</div>
</div>
</div>
<footer class="footer d-none d-md-block">
<p><a href="https://social.x10.mx">Sis Panel</a> Todos os direitos reservados</p>
</footer>
<audio id="audioChamada" src="audio/chamada.wav"></audio>
</body>
</html>