Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
Asistencia
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Billy Larru
Asistencia
Commits
7697c08e
Commit
7697c08e
authored
Sep 19, 2018
by
Billy Larru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[EDIT evaluar justificacion, aceptar o rechazar justificacion]
parent
2dd9b0be
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
65 additions
and
1 deletions
+65
-1
evaluar_justificacion.js
src/main/webapp/js/pages/evaluar_justificacion.js
+65
-1
No files found.
src/main/webapp/js/pages/evaluar_justificacion.js
View file @
7697c08e
let
justificacion
;
const
cargarDatos
=
()
=>
{
let
justificacion
=
JSON
.
parse
(
localStorage
.
getItem
(
'data'
));
justificacion
=
JSON
.
parse
(
localStorage
.
getItem
(
'data'
));
$
(
"#spanNombres"
).
text
(
`
${
justificacion
.
trabajador_apellidos
}
${
justificacion
.
trabajador_nombres
}
`
)
initDateRangePicker
(
"#dpRangoFechas"
)
...
...
@@ -40,6 +41,68 @@ const cargarDatos = () => {
$
(
"#divDocumentos"
).
html
(
html
)
}
const
justificar
=
(
estadoJustificacion
=
1
)
=>
{
let
titulo
=
""
;
let
textoConfirmacion
=
""
let
tituloOperacion
=
""
;
if
(
estadoJustificacion
==
1
)
{
titulo
=
'Está seguro de aceptar la justificación?'
;
textoConfirmacion
=
'Sí'
;
tituloOperacion
=
'¡Justificación aceptada!!'
;
}
else
if
(
estadoJustificacion
==
2
)
{
titulo
=
'Está seguro de rechazar la justificación?'
;
textoConfirmacion
=
'Sí!'
;
tituloOperacion
=
'¡Justificación rechazada!'
;
}
swal
({
title
:
titulo
,
text
:
""
,
type
:
'warning'
,
showCancelButton
:
true
,
confirmButtonColor
:
'#3085d6'
,
cancelButtonColor
:
'#d33'
,
confirmButtonText
:
textoConfirmacion
}).
then
((
result
)
=>
{
if
(
result
.
value
)
{
let
{
id
}
=
justificacion
let
params
=
cleanQueryParams
({
estado
:
estadoJustificacion
})
ajaxWebService
.
patch
(
`
${
URI_JUSTIFICACION
}
/
${
id
}
`
,
params
).
then
((
response
)
=>
{
if
(
response
.
status
)
{
swal
({
type
:
'success'
,
title
:
tituloOperacion
,
showConfirmButton
:
false
,
timer
:
1500
}).
then
((
result
)
=>
{
window
.
location
.
href
=
`
${
contextPath
}
vistas/listadoJustificacion.jsp`
});
}
})
}
});
}
const
aceptarJustificacion
=
()
=>
{
justificar
()
}
const
rechazarJustificacion
=
()
=>
{
justificar
(
2
)
}
$
(
document
).
ready
(
function
()
{
cargarDatos
()
$
(
"#btnAceptar"
).
click
(
aceptarJustificacion
)
$
(
"#btnRechazar"
).
click
(
rechazarJustificacion
)
})
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
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 comment