Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Luciano Barletta
/
Pruebas-RTO
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit 0c684495
authored
2024-07-22 11:06:36 -0300
by
Tu Nombre
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Historico en desarrollo
1 parent
4503edbc
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
static/src/historico.js
templates/historico.html
static/src/historico.js
View file @
0c68449
...
...
@@ -52,16 +52,22 @@ let pendingRequests = 0;
async
function
fetchChat
()
{
const
MensajeDiv
=
document
.
getElementById
(
'DivMensajeFijo'
);
const
MensajeCaida
=
"Se perdio contacto con el server, revise conexcion a internet"
MensajeDiv
.
innerText
=
"Escuchando novedades"
while
(
true
)
{
try
{
const
response
=
await
fetch
(
chatUrl
);
const
data
=
await
response
.
json
();
if
(
data
.
proccess
===
true
)
{
// Agregamos el mensaje al div id="chat-messages" debajo del último mensaje
//alert("se deve actualizar")
CargarLista
();
MensajeDiv
.
innerText
=
"Lista Actualizada al "
+
data
.
tiempo
}
if
(
MensajeDiv
.
innerText
==
MensajeCaida
)
{
MensajeDiv
.
innerText
=
"Se recupero conixion al server, Esperando novedades, o recarge la pagina"
}
}
catch
(
error
)
{
MensajeDiv
.
innerText
=
MensajeCaida
;
// Si ocurre un error, esperamos 5 segundos antes de volver a intentarlo
await
new
Promise
(
resolve
=>
setTimeout
(
resolve
,
5000
));
}
...
...
templates/historico.html
View file @
0c68449
...
...
@@ -14,7 +14,7 @@
</head>
<body>
<div
>
<div
class=
"MessageFixed"
>
<div
class=
"MessageFixed"
id=
"DivMensajeFijo"
>
Los datos con signo de pregunta '?' son datos no encontrados o faltantes.
<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.
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment