Commit acdfb247 by Billy Larru

[EDIT general.js cambiando url de periodo de cierre de asistencia]

parent dc98c23d
......@@ -43,7 +43,7 @@ const URI_DOCENTES_PROGRAMACION_SEMINARIO = "programacionSeminario";
const URI_DOCENTES_TIPO_SEMINARIO = "tipoSeminario";
const URI_DOCENTES_GRUPO_ACADEMICO = "grupoAcademico";
const URI_DOCENTES_ASISTENCIAS = "asistenciaDocentes";
const URI_ADMINISTRATIVOS_PERIODO_CIERRE_ASISTENCIA = "periodoCierreAsistenciaAdministrativa";
const URI_ADMINISTRATIVOS_PERIODO_CIERRE_ASISTENCIA = "periodoCierreAsistencia";
const URI_ADMINISTRATIVOS_DESCUENTO_MENSUAL = "descuentoMensualAdministrativos";
const URI_ADMINISTRATIVOS_DESCUENTO_MENSUAL_DETALLADO = "descuentoAsistenciaAdministrativaDetallado";
//</editor-fold>
......
......@@ -56,8 +56,9 @@ function getColumns() {
const listarPeriodosCierreAsistencia = (nodeIdentifier) => {
ajaxWebService.get(URI_ADMINISTRATIVOS_PERIODO_CIERRE_ASISTENCIA).then((result) => {
let data = result.data;
data = _.filter(data, {tipopersonal_descripcion: "ADMINISTRATIVOS"})
let html = `<option value="">[SELECCIONE]</option>`;
html += data.map(periodo => `<option value="${periodo.id}">${periodo.descripcion}</option>`);
html += data.map(periodo => `<option value="${periodo.id}">${periodo.mescierre_descripcion}</option>`);
$(nodeIdentifier).html(html);
$(nodeIdentifier).change((e) => {
let id = $(e.currentTarget).val();
......
......@@ -139,17 +139,6 @@ const mostrarModalAsignarTolerancia = () => {
});
};
function listarSedes(selectorName) {
ajaxWebService.get(URI_SEDES).then((result) => {
let sedes = result.data;
sedes = _.orderBy(sedes, s => s.descripcion);
let html = `<option value="">[SELECCIONE]</option>`;
sedes.forEach(sede => html += `<option value="${sede.codigo}">${sede.descripcion}</option>`);
$(`${selectorName}`).html(html);
$(`${selectorName}`).select2();
});
}
$(() => {
initDualListbox("#lista");
listarPersonal("#cboPersonalFiltro");
......
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