Commit 617b728c by Billy Larru

[EDIT registro_periodo_cierre, quitando boton confirmar, mostrando descripcion…

[EDIT registro_periodo_cierre, quitando boton confirmar, mostrando descripcion detallada de la sede a abrir/cerrar periodo]
parent d93f000d
...@@ -196,6 +196,7 @@ const mostrarModalVerDetalle = (data) => { ...@@ -196,6 +196,7 @@ const mostrarModalVerDetalle = (data) => {
title: '<strong>Detalle</strong>', title: '<strong>Detalle</strong>',
html: response.data, html: response.data,
showCloseButton: true, showCloseButton: true,
showConfirmButton: false,
focusConfirm: false, focusConfirm: false,
confirmButtonText: '<i class="icon-checkmark2"></i> OK', confirmButtonText: '<i class="icon-checkmark2"></i> OK',
width: '30%', width: '30%',
...@@ -240,7 +241,7 @@ const mostrarModalVerDetalle = (data) => { ...@@ -240,7 +241,7 @@ const mostrarModalVerDetalle = (data) => {
data: null, data: null,
className: 'text-center', className: 'text-center',
render: (data) => { render: (data) => {
let abrirPeriodo = "", cerrarPeriodo let abrirPeriodo = "", cerrarPeriodo = ""
let acciones let acciones
if (data.estado === 1) { if (data.estado === 1) {
cerrarPeriodo = `<span style="cursor: pointer"><i class="cierre-periodo-sede icon-lock2 text-danger-700"></i>&nbsp;&nbsp;</span>`; cerrarPeriodo = `<span style="cursor: pointer"><i class="cierre-periodo-sede icon-lock2 text-danger-700"></i>&nbsp;&nbsp;</span>`;
...@@ -292,12 +293,12 @@ const mostrarModalCierrePeriodoSede = (data, jsonPrimerDatatable) => { ...@@ -292,12 +293,12 @@ const mostrarModalCierrePeriodoSede = (data, jsonPrimerDatatable) => {
if (estado) { if (estado) {
titulo = `Cerrar el periodo «${data.mescierre_descripcion}»?`; titulo = `Cerrar el periodo «${data.mescierre_descripcion}» a la sede «${data.sede_descripcion}»?`;
textoConfirmacion = 'Sí!'; textoConfirmacion = 'Sí!';
tituloOperacion = '¡Periodo cerrado exitosamente!'; tituloOperacion = '¡Periodo cerrado exitosamente!';
estado = 0; estado = 0;
} else { } else {
titulo = `Abrir el periodo «${data.mescierre_descripcion}»?`; titulo = `Abrir el periodo «${data.mescierre_descripcion}» a la sede «${data.sede_descripcion}»?`;
textoConfirmacion = 'Sí!'; textoConfirmacion = 'Sí!';
tituloOperacion = '¡Periodo abierto exitosamente!'; tituloOperacion = '¡Periodo abierto exitosamente!';
estado = 1; estado = 1;
...@@ -321,7 +322,6 @@ const mostrarModalCierrePeriodoSede = (data, jsonPrimerDatatable) => { ...@@ -321,7 +322,6 @@ const mostrarModalCierrePeriodoSede = (data, jsonPrimerDatatable) => {
showConfirmButton: false, showConfirmButton: false,
timer: 1500 timer: 1500
}); });
// listarPeriodosCierre()
} }
debugger debugger
mostrarModalVerDetalle(jsonPrimerDatatable) mostrarModalVerDetalle(jsonPrimerDatatable)
......
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