Commit d93f000d by Billy Larru

[EDIT registro periodo de cierre, modificando el estado de cierre de una sede especifica]

parent c4d2ef89
...@@ -55,6 +55,7 @@ const URI_ESTADOJUSTIFICACION = "estadoJustificaciones" ...@@ -55,6 +55,7 @@ const URI_ESTADOJUSTIFICACION = "estadoJustificaciones"
const URI_TIPOPERSONAL = "tipoPersonales" const URI_TIPOPERSONAL = "tipoPersonales"
const URI_MESESCIERRE = "mesesCierre" const URI_MESESCIERRE = "mesesCierre"
const URI_PERIODOCIERRE = "periodoCierreAsistencia" const URI_PERIODOCIERRE = "periodoCierreAsistencia"
const URI_PERIODOCIERRE_SEDES = "periodoSedes"
const URI_JUSTIFICACION_ASISTENCIAS = "asistenciaJustificacion" const URI_JUSTIFICACION_ASISTENCIAS = "asistenciaJustificacion"
//</editor-fold> //</editor-fold>
...@@ -614,7 +615,7 @@ const listarSedes = (nodeIdentifier, todos = true) => { ...@@ -614,7 +615,7 @@ const listarSedes = (nodeIdentifier, todos = true) => {
}); });
}; };
const getDataRow = (datatable, e) => datatable.DataTable().row($(e.currentTarget).parents("tr").data()) const getDataRow = (datatable, e) => datatable.DataTable().row($(e.currentTarget).parents("tr")).data()
/*ELIMINAR CUANDO PASE A PROD*/ /*ELIMINAR CUANDO PASE A PROD*/
//$("body").addClass("sidebar-xs") //$("body").addClass("sidebar-xs")
......
...@@ -190,6 +190,7 @@ function listarPeriodosCierre(objParams = {}){ ...@@ -190,6 +190,7 @@ function listarPeriodosCierre(objParams = {}){
} }
const mostrarModalVerDetalle = (data) => { const mostrarModalVerDetalle = (data) => {
ajaxModal.get("periodoscierre/detalleperiodo.jspf").then((response) => { ajaxModal.get("periodoscierre/detalleperiodo.jspf").then((response) => {
swalWithBootstrapButtons({ swalWithBootstrapButtons({
title: '<strong>Detalle</strong>', title: '<strong>Detalle</strong>',
...@@ -200,50 +201,78 @@ const mostrarModalVerDetalle = (data) => { ...@@ -200,50 +201,78 @@ const mostrarModalVerDetalle = (data) => {
width: '30%', width: '30%',
customClass: 'swal2-overflow', customClass: 'swal2-overflow',
onOpen: () => { onOpen: () => {
let columns = [
{ let params = {
title: 'N°', periodocierreasistencia_id: data.id
data: 'id', }
className: 'text-center'
}, ajaxWebService.get(URI_PERIODOCIERRE_SEDES, {params}).then((response2) => {
{ let columns = [
title: 'Sede', {
data: 'sede_descripcion', title: 'N°',
className: 'text-center' data: 'id',
}, className: 'text-center'
{ },
title: 'ESTADO', {
data: 'estado', title: 'Sede',
className: 'text-center' data: 'sede_descripcion'
}, },
{ {
title: 'ACCIONES', title: 'ESTADO',
data: null, data: 'estado',
className: 'text-center', className: 'text-center',
render: (data) => { render: (data) => {
return `` let label = "", contenido = ""
if (data === 1) {
label = "label label-success"
contenido = "ABIERTO"
} else if (data === 0) {
label = "label label-danger"
contenido = "CERRADO"
}
return `<span class="${label}">${contenido}</span>`
}
},
{
title: 'ACCIONES',
data: null,
className: 'text-center',
render: (data) => {
let abrirPeriodo = "", cerrarPeriodo
let acciones
if (data.estado === 1) {
cerrarPeriodo = `<span style="cursor: pointer"><i class="cierre-periodo-sede icon-lock2 text-danger-700"></i>&nbsp;&nbsp;</span>`;
} else if (data.estado === 0) {
abrirPeriodo = `<span style="cursor: pointer"><i class="cierre-periodo-sede icon-unlocked2 text-success-700"></i>&nbsp;&nbsp;</span>`;
}
acciones = abrirPeriodo + cerrarPeriodo
return acciones
}
} }
} ]
]
let wrapsNameDatatable = `dtPeriodoSedes`;
let wrapsNameDatatable = `dtPeriodoSedes`; let classNameForDatatable = `display table table-bordered`;
let classNameForDatatable = `display table table-bordered`;
let dataOrdenada = _.orderBy(response2.data, s => s.sede_descripcion)
makeDatatable(
wrapsNameDatatable, makeDatatable(
{ wrapsNameDatatable,
data: response.data, {
columns, data: dataOrdenada,
}, columns,
classNameForDatatable, pageLength: 10
).then((nodes) => { },
nodes.container classNameForDatatable,
.off() ).then((nodes) => {
// .on("click", ".editar", (e) => mostrarModalEditarPeriodoCierre(getDataRow(nodes.datatable, e))) nodes.container
// .on("click", ".cierre-periodo", (e) => mostrarModalCierrePeriodo(getDataRow(nodes.datatable, e))) .off()
// .on("click", ".ver-detalle", (e) => mostrarModalVerDetalle(getDataRow(nodes.datatable, e))) .on("click", ".cierre-periodo-sede", (e) => mostrarModalCierrePeriodoSede(getDataRow(nodes.datatable, e), data))
});
}); })
} }
}).then((result) => { }).then((result) => {
...@@ -254,6 +283,55 @@ const mostrarModalVerDetalle = (data) => { ...@@ -254,6 +283,55 @@ const mostrarModalVerDetalle = (data) => {
}); });
} }
const mostrarModalCierrePeriodoSede = (data, jsonPrimerDatatable) => {
debugger
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_SEDES}/${id}`, {estado}).then((response) => {
if (response.status) {
swal({
type: 'success',
title: tituloOperacion,
showConfirmButton: false,
timer: 1500
});
// listarPeriodosCierre()
}
debugger
mostrarModalVerDetalle(jsonPrimerDatatable)
});
} else {
mostrarModalVerDetalle(jsonPrimerDatatable)
}
});
}
const mostrarModalEditarPeriodoCierre = (data) => { const mostrarModalEditarPeriodoCierre = (data) => {
ajaxModal.get("cierreasistenciamensual/mantenimientoPeriodoCierre/registroperiodocierre.jspf").then((response) => { ajaxModal.get("cierreasistenciamensual/mantenimientoPeriodoCierre/registroperiodocierre.jspf").then((response) => {
swalWithBootstrapButtons({ swalWithBootstrapButtons({
...@@ -368,14 +446,14 @@ const aplicarFiltro = () => { ...@@ -368,14 +446,14 @@ const aplicarFiltro = () => {
const formControls = { const formControls = {
init() { init() {
debugger
this.initTipoCierres() this.initTipoCierres()
this.initPeriodos() this.initPeriodos()
this.initEstados() this.initEstados()
this.initPickers() this.initPickers()
}, },
initTipoCierres() { initTipoCierres() {
debugger
listarTipoPersonal("#cboTipoPersonalFiltro", 1) listarTipoPersonal("#cboTipoPersonalFiltro", 1)
}, },
initPeriodos() { initPeriodos() {
......
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