Commit a0040ff8 by Billy Larru

filtrando por rango de fechas en crear rol

parent 4c62ffd1
...@@ -423,10 +423,12 @@ function buscarRoles() { ...@@ -423,10 +423,12 @@ function buscarRoles() {
let fecha_inicio = $("#dpFechaInicio").val(); let fecha_inicio = $("#dpFechaInicio").val();
let fecha_fin = $("#dpFechaFin").val(); let fecha_fin = $("#dpFechaFin").val();
let rangoFechas = generarFechas(fecha_inicio, fecha_fin);
let params = cleanQueryParams({ let params = cleanQueryParams({
policia_id, policia_id,
sede_id, sede_id,
fecha_inicio fecha_inicio: rangoFechas
}); });
console.log(params); console.log(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