Commit e250fe4f by Billy Larru

[EDIT general.js, definiendo listarSedes]

parent fbef7dec
......@@ -51,6 +51,7 @@ const URI_ADMINISTRATIVOS_DESCUENTO_MENSUAL_DETALLADO = "descuentoAsistenciaAdmi
const URI_SEDES = "sedes";
const URI_JUSTIFICACION_TIPO = "tipoJustificacion"
const URI_JUSTIFICACION = "justificaciones"
const URI_ESTADOJUSTIFICACION = "estadoJustificaciones"
//</editor-fold>
swal.mixin({
......@@ -599,6 +600,16 @@ const generarFechas = (desde, hasta) => {
return fechas;
}
const listarSedes = (nodeIdentifier, todos = true) => {
ajaxWebService.get(URI_SEDES).then((response) => {
let sedes = response.data;
sedes = _.orderBy(sedes, s => s.descripcion);
let html = `<option value="">${todos ? "[TODOS]" : [SELECCIONE]}</option>`;
html += sedes.map(sede => `<option value="${sede.codigo}">${sede.descripcion}</option>`)
$(nodeIdentifier).html(html).select2();
});
};
/*ELIMINAR CUANDO PASE A PROD*/
$("body").addClass("sidebar-xs")
......
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