Commit 8b688347 by Billy Larru

[EDIT registro_periodo_cierre, registrando periodo de cierre]

parent f269ed86
......@@ -54,6 +54,7 @@ const URI_JUSTIFICACION = "justificaciones"
const URI_ESTADOJUSTIFICACION = "estadoJustificaciones"
const URI_TIPOPERSONAL = "tipoPersonales"
const URI_MESESCIERRE = "mesesCierre"
const URI_PERIODOCIERRE = "periodoCierreAsistencia"
//</editor-fold>
const swalWithBootstrapButtons = swal.mixin({
......
......@@ -38,14 +38,27 @@ const registrarNuevoPeriodo = () => {
let fecha_inicio = $("#dpFechaInicio").val()
let fecha_fin = $("#dpFechaFin").val()
let estado = 1
let params = {
tipopersonal_id,
tipopersonal_descripcion,
mescierre_id,
mescierre_descripcion,
fecha_inicio,
fecha_fin,
estado
}
ajaxWebService.post(URI_PERIODOCIERRE, params).then((response) => {
if (response.status) {
swal({
type: 'success',
title: `¡Periodo de cierre «${mescierre_descripcion}» registrado!`,
showConfirmButton: false,
timer: 1500
})
}
})
......
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