Commit a3c358db by Billy Larru

listando personal adminsitrativo

parent 0155014b
......@@ -55,7 +55,7 @@
</servlet-mapping>
<session-config>
<session-timeout>
-1
86400
</session-timeout>
</session-config>
</web-app>
......@@ -8,8 +8,10 @@ const CODIGO_PROYECTO = '7';
const PATH_SERVICIO_REST = 'http://app9.sacooliveros.edu.pe:8080/security-rest/api/';
//<editor-fold> SERVICIOS REST
const baseURLRest = 'http://sistem16:666/';
const ajaxWebService = axios.create({
baseURL: 'http://sistem16:666/'
baseURL: baseURLRest
});
const ajaxModal = axios.create({
baseURL: `http://localhost:7070/Asistencia/vistas/modals/`
......@@ -30,6 +32,7 @@ const URI_POLICIA_REPORTE_MONTOS = "reporteMontosPolicias";
const URI_POLICIA_PROYECCION = "proyeccion";
const URI_POLICIA_PROYECTADO_COMPARATIVO = "proyectadoComparativo";
const URI_ADMINISTRATIVO_ASISTENCIA = "asistenciaAdministrativa";
const URI_TRABAJADORES = "trabajadores";
//</editor-fold>
......@@ -428,13 +431,10 @@ const cleanQueryParams = (params = {}) => {
let initDatePicker = (...selectorName) => {
selectorName.forEach(id => {
let options = {
minDate: new Date(2000, 1 - 1, 1), maxDate: new Date(),
dateFormat: 'dd/mm/yy',
defaultDate: new Date(),
changeMonth: true,
changeYear: true,
yearRange: '-18:+0',
format: "dd/mm/yyyy",
zIndexOffset: 3000,
autoclose: true,
language: "es",
onSelect: function () {
// $(this).valid();
}
......@@ -445,7 +445,8 @@ let initDatePicker = (...selectorName) => {
}
const initSelect2 = (nodeIdentifier, URI, {id, title, subtitle} = {}) => {
const initSelect2 = (nodeIdentifier, URI, {title, subtitle} = {}) => {
console.log(2)
$(`${nodeIdentifier}`).select2({
containerCssClass: 'select-xs',
ajax: {
......@@ -458,7 +459,7 @@ const initSelect2 = (nodeIdentifier, URI, {id, title, subtitle} = {}) => {
page: params.page
};
},
processResults: function (data, params) {
processResults: function (data, params) {
// parse the results into the format expected by Select2
// since we are using custom formatting functions we do not need to
// alter the remote JSON data, except to indicate that infinite
......@@ -502,7 +503,7 @@ const initSelect2 = (nodeIdentifier, URI, {id, title, subtitle} = {}) => {
}
function formatRepoSelection(repo) {
if (repo[id]) {
if (repo.id) {
return repo[title];
} else {
return repo.text;
......
......@@ -118,8 +118,7 @@ function listarPolicias(selectorName) {
initSelect2(selectorName, "http://sistem16:666/policias", {title: "nombres", subtitle: "dni"});
}
function verReporte() {
debugger
function verReporte() {
// let policia_nombres = $("#cboPolicias option:selected").text();
let fecha_inicio = $("#dpFechaInicio").val();
......
......@@ -15,7 +15,7 @@ function getColumns() {
let apellidoMaterno = data.apellido_materno;
let nombres = data.nombres;
nombresCompletos = `${apellidoPaterno} ${apellidoMaterno} ${nombres}`;
return nombresCompletos;
}
},
......@@ -112,6 +112,24 @@ function listarAsistencia(objParams = {}) {
});
}
$().ready(function () {
const listarSedes = (selectorName) => {
ajaxWebService.get(URI_SEDES).then((result) => {
let sedes = result.data;
sedes = _.orderBy(sedes, s => s.descripcion);
let html = `<option value="">[TODOS]</option>`;
sedes.forEach(sede => html += `<option value="${sede.codigo}">${sede.descripcion}</option>`);
$(`${selectorName}`).html(html);
$(selectorName).select2();
});
}
const listarPersonal = (selectorName) => {
initSelect2(selectorName, baseURLRest + URI_TRABAJADORES, {title: "nombresapellidos", subtitle: "documentoidentidad"});
}
$(() => {
listarAsistencia();
});
\ No newline at end of file
initDatePicker("#dpFechaInicio", "#dpFechaFin");
listarSedes("#cboSedesFiltro");
listarPersonal("#cboPersonalFiltro");
});
......@@ -269,7 +269,7 @@ function listarSedes(selectorName) {
let html = `<option value="">[TODOS]</option>`;
sedes.forEach(sede => html += `<option value="${sede.codigo}">${sede.descripcion}</option>`);
$(`${selectorName}`).html(html);
$('.select-search').select2();
$(`${selectorName}`).select2();
});
}
......
......@@ -76,8 +76,10 @@
<script src="../plantilla/assets/js/plugins/ui/moment/moment.min.js" type="text/javascript"></script>
<script src="../plantilla/assets/js/plugins/pickers/datepicker.js" type="text/javascript"></script>
<script src="../js/lib/bootstrap-select.min.js" type="text/javascript"></script>
<script src="../plantilla/assets/js/plugins/forms/selects/select2.min.js"></script>
<script src="../js/lib/lodash.js" type="text/javascript"></script>
<script src="../js/lib/sweetalert2.min.js" type="text/javascript"></script>
<script src="../js/pages/control_asistencia_administrativa.js" type="text/javascript"></script>
<!--js-->
......
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