Commit 6f262503 by Tu Nombre

Se mejora historico

1 parent 0c684495
...@@ -5,7 +5,7 @@ function CargarLista() { ...@@ -5,7 +5,7 @@ function CargarLista() {
"clear": true, "clear": true,
"params": { "params": {
"ApiKey": "sdñÑREgerqw3$E#]ÑgdfbversdfFfew435", "ApiKey": "sdñÑREgerqw3$E#]ÑgdfbversdfFfew435",
"id_cent": "061" "id_cent": "61"
} }
}; };
...@@ -30,18 +30,29 @@ function CargarLista() { ...@@ -30,18 +30,29 @@ function CargarLista() {
function createHistoricoList(data) { function createHistoricoList(data) {
const historicoDiv = document.getElementById('div_historico'); const historicoDiv = document.getElementById('div_historico');
historicoDiv.innerHTML = "" ; historicoDiv.innerHTML = "" ;
//historicoDiv.innerText = "Dominios del dia"
data.inspecciones.forEach(inspeccion => { data.inspecciones.forEach(inspeccion => {
const div = document.createElement('div');
div.textContent = inspeccion.name + " " + inspeccion.resultado + " " + inspeccion.fecha + " ";
const button = document.createElement('button'); const button = document.createElement('button');
button.className = 'PDFButton'; button.className = 'PDFButton';
button.id = inspeccion.name; button.id = inspeccion.name;
button.textContent = 'Ir dominio '; button.textContent = 'Ir dominio ';
const div = document.createElement('div');
//div.textContent = inspeccion.name + " " + inspeccion.resultado + " " + inspeccion.fecha + " ";
const titulo = document.createElement('H4');
titulo.textContent = inspeccion.name + " " + inspeccion.resultado ;
const ftl = document.createElement('H6');
ftl.textContent = "Linea " + inspeccion.linea + ", Planilla " + inspeccion.numeroplanilla + ", Categoria " + inspeccion.categoria;
div.appendChild(titulo);
div.appendChild(ftl);
div.appendChild(button); div.appendChild(button);
const separador =document.createElement('hr')
separador.className = 'custom-hr';
historicoDiv.appendChild(div); historicoDiv.appendChild(div);
historicoDiv.appendChild(document.createElement('br')); historicoDiv.appendChild(separador);
}); });
} }
......
...@@ -11,6 +11,15 @@ ...@@ -11,6 +11,15 @@
<link rel="stylesheet" media="screen" href="https://fontlibrary.org/face/cmu-typewriter" type="text/css" /> <link rel="stylesheet" media="screen" href="https://fontlibrary.org/face/cmu-typewriter" type="text/css" />
--> -->
<title>Pruebas de Alineamiento</title> <title>Pruebas de Alineamiento</title>
<style>
.custom-hr {
border: none;
border-top: 1px solid #000; /* Personaliza el color y grosor aquí */
width: 66.67%; /* Dos tercios del ancho de la página */
margin: 20px 0; /* Ajusta el espacio alrededor de la línea aquí */
margin-left: 0; /* Alinea la línea al inicio (izquierda) */
}
</style>
</head> </head>
<body> <body>
<div > <div >
...@@ -19,11 +28,15 @@ ...@@ -19,11 +28,15 @@
Pueden ser completados a mano antes de convertir a PDF.<br> Pueden ser completados a mano antes de convertir a PDF.<br>
De no ser completados, se completaran automáticamente con el valor del campo 'Por defecto' al final de la página. De no ser completados, se completaran automáticamente con el valor del campo 'Por defecto' al final de la página.
</div> </div>
<div class="DataCard" id="div_historico"> <div class="DataCard" id="div_historico">
</div> </div>
<div class="PDFButtonContainerFixed"> <div class="PDFButtonContainerFixed">
<h3>Dominios del dia</h3>
<button class="PDFButton" onclick= "location.href='/'"> <button class="PDFButton" onclick= "location.href='/'">
Carga Carga
</button> </button>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!