Commit 6b2d5aa5 by Billy Larru

[EDIT periodos de cierre, cambiando el estado del periodo]

parent f8f805d5
......@@ -256,7 +256,47 @@ const editarPeriodoCierre = (data) => {
}
const mostrarModalCierrePeriodo = (data) => {
let {id, estado} = data;
let titulo = "";
let textoConfirmacion = ""
let tituloOperacion = "";
if (estado) {
titulo = `Cerrar el periodo «${data.mescierre_descripcion}»?`;
textoConfirmacion = 'Sí!';
tituloOperacion = '¡Periodo cerrado exitosamente!';
estado = 0;
} else {
titulo = `Abrir el periodo «${data.mescierre_descripcion}»?`;
textoConfirmacion = 'Sí!';
tituloOperacion = '¡Periodo abierto exitosamente!';
estado = 1;
}
swal({
title: titulo,
text: "",
type: 'question',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: textoConfirmacion
}).then((result) => {
if (result.value) {
ajaxWebService.patch(`${URI_PERIODOCIERRE}/${id}`, {estado}).then((response) => {
if (response.status) {
swal({
type: 'success',
title: tituloOperacion,
showConfirmButton: false,
timer: 1500
});
listarPeriodosCierre()
}
});
}
});
}
const aplicarFiltro = () => {
......
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