Commit 7697c08e by Billy Larru

[EDIT evaluar justificacion, aceptar o rechazar justificacion]

parent 2dd9b0be
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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment