-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlistaXhora.html
More file actions
98 lines (96 loc) · 3.35 KB
/
listaXhora.html
File metadata and controls
98 lines (96 loc) · 3.35 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Lista de Hora de Inicio</title>
<link rel="icon" type="image/png" href="./IMG/relojito.png">
<link rel="stylesheet" href="./CSS/listaXhora.css">
</head>
<body>
<!-- CARGA LLAMADAS -->
<section>
<div>
<button id="cargarActual" tabindex="-1" onclick="leeLLamadasLocal()">Presenta Llamadas Actuales</button>
<button id="leeAnalisis" tabindex="-1" onclick="leeLLamadasAnalisis()">Presenta llamadas Analisis</button>
<button id="cargar" tabindex="-1">Carga Llamadas Analisis</button>
<input type="file" id="archivo" style="display:none" tabindex="-1"><br>
<br>
</div>
</section>
<!-- BUSCA POR ID ANALISIS -->
<section class="seccionAnalisis">
<section>
<label for="numeroServicio">Número de servicio Analisis:</label>
<input type="text" id="numeroServicio" name="numeroServicio">
<button type="button" onclick="buscar()">Buscar</button>
<br>
<h2>Hora Analisis:</h2>
<div id="resultado"></div>
</section>
<!-- BUSCA POR HORA -->
<section>
<select id="horaInicio"></select>
</section>
<table id="tablaHora">
<thead>
<tr>
<th>Número de Servicio</th>
<th>Dígito Verificador</th>
<th>Fecha de Inicio</th>
<th>Nombre de Usuario</th>
<th>RUT</th>
<th>Celular</th>
<th>Email</th>
<th>Asunto</th>
<th>Glosa</th>
<th>Desarrollo</th>
<th>Recordatorio</th>
<th>Número de Atención</th>
<th>Número de Aviso</th>
<th>Número de Orden</th>
</tr>
</thead>
<tbody id="tablaResultados"></tbody>
</table>
</section>
<br>
<!-- BUSCA POR ID ANALISIS -->
<section class="seccionActual">
<section>
<label for="numeroServicioActual">Número de servicio Analisis:</label>
<input type="text" id="numeroServicioActual" name="numeroServicioActual">
<button type="button" onclick="buscarActual()">Buscar</button>
<br>
<h2>Hora Analisis:</h2>
<div id="resultadoActual"></div>
</section>
<!-- BUSCA POR HORA -->
<section>
<select id="horaInicioActual"></select>
</section>
<table id="tablaHoraActual">
<thead>
<tr>
<th>Número de Servicio</th>
<th>Dígito Verificador</th>
<th>Fecha de Inicio</th>
<th>Nombre de Usuario</th>
<th>RUT</th>
<th>Celular</th>
<th>Email</th>
<th>Asunto</th>
<th>Glosa</th>
<th>Desarrollo</th>
<th>Recordatorio</th>
<th>Número de Atención</th>
<th>Número de Aviso</th>
<th>Número de Orden</th>
</tr>
</thead>
<tbody id="tablaResultadosActual"></tbody>
</table>
</section>
<br>
<script src="./JS/listaXhora.js"></script>
</body>
</html>