Commit fcb1748c by Billy Larru

[EDIT listado justificacion, filtro por fecha]

parent 94113db3
......@@ -147,22 +147,26 @@ const formControls = {
listarEstadoJustificaciones("#cboEstadoJustificacionFiltro")
}
}
//
const aplicarFiltro = () => {
let personal = $("#cboPersonalFiltro").select2('data')[0];
let {trabajador_id} = personal
let {id: trabajador_id} = personal
let fecha_inicio = $("#dpFechaInicioFiltro").val()
let fecha_fin = $("#dpFechaFinFiltro").val()
let rango_fechas = generarFechas(fecha_inicio, fecha_fin)
let sede_id = $("#cboSedesFiltro").val()
let sede_descripcion = $("#cboSedesFiltro option:selected").text()
let estadoJustificacion = $("#cboEstadoJustificacionFiltro").val();
let params = cleanQueryParams({
fecha_inicio,
fecha_fin,
trabajador_id
fecha_inicio: rango_fechas,
trabajador_id,
estado: estadoJustificacion
})
debugger
listarJustificaciones({params})
}
......
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