general.js 16.1 KB
Newer Older
Billy Larru committed
1
//DEVELOP
2 3 4 5
const IP = '172.16.2.102';
const PORT = '7070';
const PATH_GENERAL = `http://${IP}:${PORT}/Asistencia/`;
const PATH_IP = `http://${IP}:${PORT}/Asistencia/`;
Billy Larru committed
6 7
//PRODUCCION
const PATH_DOMAIN = '';
8
const CODIGO_PROYECTO = '7';
9 10
//const PATH_SERVICIO_REST = 'http://172.16.2.53:8080/security-rest/api/'//'http://app8.sacooliveros.edu.pe:8080/security-rest/api/';
const PATH_SERVICIO_REST = 'http://app9.sacooliveros.edu.pe:8080/security-rest/api/';
11
//<editor-fold> SERVICIOS REST
Billy Larru committed
12

Billy Larru committed
13
const baseURLRest = 'http://sistem02:666/';
14
const baseURLModals = `http://${IP}:${PORT}/Asistencia/vistas/modals/`;
15

16 17
const baseURLImages = ''

18
const ajaxWebService = axios.create({
19
	baseURL: baseURLRest
20 21
});
const ajaxModal = axios.create({
22
	baseURL: baseURLModals
23
});
24

Billy Larru committed
25
//<editor-fold>
26
//<editor-fold> MODULO DE POLICIAS
27 28 29 30 31 32 33 34 35
const URI_TIPOROL_POLICIA = "tipoRolPolicias";
const URI_FRECUENCIA_ROL_POLICIA = "frecuenciaRolPolicias";
const URI_ESTADO_ASISTENCIA = "estadoAsistencia";
const URI_POLICIAS = "policias";
const URI_ROL_POLICIA = "rolesPolicias";
const URI_POLICIAS_ASISTENCIA = "asistenciaPolicias";
const URI_POLICIA_MONTOS_AMANECIDAS = "montoAmanecidas";
const URI_POLICIA_CONCEPTOSEDES = "conceptoSedes";
const URI_POLICIA_REPORTE_MONTOS = "reporteMontosPolicias";
36
const URI_POLICIA_PROYECCION = "proyeccion";
37
const URI_POLICIA_PROYECTADO_COMPARATIVO = "proyectadoComparativo";
Billy Larru committed
38
const URI_ADMINISTRATIVO_ASISTENCIA = "asistenciaAdministrativa";
39
const URI_TRABAJADORES = "trabajadores";
40 41
const URI_ADMINISTRATIVOS_TOLERANCIA_INDIVIDUAL = "toleranciasIndividuales";
const URI_ADMINISTRATIVOS_ESTADO_TOLERANCIA_INDIVIDUAL = "estadoTolerancias";
42
const URI_ADMINISTRATIVOS_VACACIONES_INDIVIDUAL = "vacacionesAdministrativasIndividuales";
43
const URI_CARGOS = "cargoLaboral";
44 45 46
const URI_DOCENTES_PROGRAMACION_SEMINARIO = "programacionSeminario";
const URI_DOCENTES_TIPO_SEMINARIO = "tipoSeminario";
const URI_DOCENTES_GRUPO_ACADEMICO = "grupoAcademico";
47
const URI_DOCENTES_ASISTENCIAS = "asistenciaDocentes";
48
const URI_ADMINISTRATIVOS_PERIODO_CIERRE_ASISTENCIA = "periodoCierreAsistencia";
49 50
const URI_ADMINISTRATIVOS_DESCUENTO_MENSUAL = "descuentoMensualAdministrativos";
const URI_ADMINISTRATIVOS_DESCUENTO_MENSUAL_DETALLADO = "descuentoAsistenciaAdministrativaDetallado";
51 52
//</editor-fold>

53
const URI_SEDES = "sedes";
54
const URI_JUSTIFICACION_CAUSA = "causaJustificacion"
55
const URI_JUSTIFICACION_TIPO = "tipoJustificacion"
56
const URI_JUSTIFICACION = "justificaciones"
57
const URI_ESTADOJUSTIFICACION = "estadoJustificaciones"
58 59
const URI_TIPOPERSONAL = "tipoPersonales"
const URI_MESESCIERRE = "mesesCierre"
60
const URI_PERIODOCIERRE = "periodoCierreAsistencia"
61
const URI_PERIODOCIERRE_SEDES = "periodoSedes"
62
const URI_JUSTIFICACION_ASISTENCIAS = "asistenciaJustificacion"
63
const URI_DOCENTES_MONTOS = "montosDocentes"
64
const URI_TIPOPLANILLAS = "tipoPlanillaReal"
65
const URI_DOCENTES_DETALLEMONTOS = "detalleMontosDocentes"
66 67
//</editor-fold>

68 69 70
const swalWithBootstrapButtons = swal.mixin({
	confirmButtonClass: 'btn btn-success',
	cancelButtonClass: 'btn btn-danger',
71
	buttonsStyling: false,
72
})
73 74

$.extend($.fn.dataTable.defaults, {
75
//	bSort: false,
76
	bFilter: false,
77
//	aaSorting: [],
78
	ordering: false,
79 80
	bLengthChange: false,
	bInfo: true,
81
//	paging: true,
82
	iDisplayLength: 20,
83 84 85 86
//	bStateSave: false,
//	autoWidth: false,
//	responsive: true,
//	stateSave: true,
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
	scrollX: true,
	responsive: true,
	language: {
		lengthMenu: "Mostrar: _MENU_",
		zeroRecords: "&nbsp;&nbsp;&nbsp; No se encontraron resultados",
		info: "&nbsp;&nbsp;&nbsp; Mostrando del _START_ al _END_ de un total de _TOTAL_ registros",
		infoEmpty: "&nbsp;&nbsp;&nbsp; Mostrando 0 de 0 registros",
		search: "Filtrar:",
		loadingRecords: "Cargando...",
		processing: '<span style="width:100%;"><img src="http://www.snacklocal.com/images/ajaxload.gif"></span>',
		paginate: {
			first: "First",
			last: "Last",
			next: "Siguiente",
			previous: "Anterior"
		}
	}
104 105
});

106
ajaxWebService.interceptors.response.use(function (response) {
107 108 109 110 111 112
	// Do something with response data
	let respuesta = {
		status: response.data.status || true,
		message: response.data.message || `Operación exitosa`,
		data: response.data.data || response.data
	};
113
//	console.log(respuesta, moment().format("YYYY/DD/MM HH:MM:SS s"))
114
	return respuesta;
115
}, function (error) {
116 117
	// Do something with response error
	return Promise.reject(error);
118 119 120
});


Billy Larru committed
121 122
/*Ajax genral*/
const ajaxRequestSendBody = obj => {
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
	let body = JSON.stringify(obj.body);
	return new Promise((resolve, reject) => {
		$.ajax({
			url: obj.url,
			type: obj.type,
			headers: obj.headers,
			data: {body: body},
			beforeSend: (xhr, settings) => {
			}, success: (response, textStatus, jqXHR) => {
				resolve(response)
			}, error: (jqXHR, textStatus, errorThrown) => {
				reject({
					status: jqXHR.status,
					throw: errorThrown || {},
					jqXHR: jqXHR,
					request: obj
				})
			}
		})
	})
Billy Larru committed
143 144 145 146
}
/*Ajax General*/
/*Ajax genral*/
const ajaxRequestGeneral = obj => {
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
	let body = JSON.stringify(obj.body);
	return new Promise((resolve, reject) => {
		$.ajax({
			url: obj.url,
			type: obj.type,
			headers: obj.headers,
			data: {body: body},
			beforeSend: (xhr, settings) => {
			}, success: (response, textStatus, jqXHR) => {
				resolve(response)
			}, error: (jqXHR, textStatus, errorThrown) => {
				reject({
					status: jqXHR.status,
					throw: errorThrown || {},
					jqXHR: jqXHR,
					request: obj
				})
			}
		})
	})
Billy Larru committed
167 168
}
let createSelectOptions = (obj, valueName, textName) => {
169 170 171 172 173
	let options = ''
	obj.forEach((data) => {
		options += ` < option value = "${data[valueName]}" > ${data[textName]} < /option>`
	})
	return options
Billy Larru committed
174 175 176
}

let customSwal = {
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
	alert(title, text, type) {
		let colors = {
			success: '#66BB6A',
			error: '#EF5350',
			warning: '#FF7043'
		}
		let btnColor = colors[type]
		return new Promise((resolve, reject) => {
			swal({
				title: title,
				text: text,
				confirmButtonColor: btnColor,
				type: type
			}, (isConfirm) => {
				resolve()
			})
		})
	}
Billy Larru committed
195 196 197 198 199 200 201 202 203 204 205
}

/**
 * Get the closest matching element up the DOM tree.
 * @private
 * @param  {Element} elem     Starting element
 * @param  {String}  selector Selector to match against
 * @return {Boolean|Element}  Returns null if not match found
 */
let getClosest = (elem, selector) => {

206
// Element.matches() polyfill
207 208
	if (!Element.prototype.matches) {
		Element.prototype.matches =
209 210 211 212 213 214 215 216 217 218 219 220
			Element.prototype.matchesSelector ||
			Element.prototype.mozMatchesSelector ||
			Element.prototype.msMatchesSelector ||
			Element.prototype.oMatchesSelector ||
			Element.prototype.webkitMatchesSelector ||
			function (s) {
				var matches = (this.document || this.ownerDocument).querySelectorAll(s),
					i = matches.length
				while (--i >= 0 && matches.item(i) !== this) {
				}
				return i > -1
			}
221
	}
222
// Get closest match
223 224 225 226 227
	for (; elem && elem !== document; elem = elem.parentNode) {
		if (elem.matches(selector))
			return elem
	}
	return null
Billy Larru committed
228 229
}
let block = () => {
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
	$.blockUI({
		message: '<i class="icon-spinner4 spinner"></i>',
		timeout: 2000, //unblock after 2 seconds
		overlayCSS: {
			backgroundColor: '#1b2024',
			opacity: 0.8,
			cursor: 'wait'
		},
		css: {
			border: 0,
			color: '#fff',
			padding: 0,
			backgroundColor: 'transparent'
		}
	});
Billy Larru committed
245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
}
//let logOut = () =>{
//    document.querySelector('#logOut').addEventListener('click', (e) => {
//        window.location.href = 'http://172.16.2.53:8080/proyecto-estandar/vistas/logout'
//    })
//}
//logOut();

//let logOut = () => {
//    $('.logOut').click(function () {
//        console.log("redireccionando")
//        window.location.href = CONSTANTES.PATH_IP + 'vistas/logout';
//    })
//}

let logOut = () => {
261
	document.querySelector('#logOut').addEventListener('click', (e) => {
262
		window.location.href = `${contextPath}/vistas/logout`;
263
	});
264 265
};
function defaultConfigDatePicker() {
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
	$('.datepicker').datepicker({
		dateFormat: 'dd/mm/yy',
		showButtonPanel: true,
		changeMonth: true,
		changeYear: true,
		minDate: '-4Y',
		maxDate: '+1Y',
		inline: true
	});
	$.datepicker.regional['es'] = {
		closeText: 'Cerrar',
		prevText: '<Ant',
		nextText: 'Sig>',
		currentText: 'Hoy',
		monthNames: ['Enero', 'Febrero', 'Marzo', 'Abril', 'Mayo', 'Junio', 'Julio', 'Agosto', 'Setiembre', 'Octubre', 'Noviembre', 'Diciembre'],
		monthNamesShort: ['Ene', 'Feb', 'Mar', 'Abr', 'May', 'Jun', 'Jul', 'Ago', 'Sep', 'Oct', 'Nov', 'Dic'],
		dayNames: ['Domingo', 'Lunes', 'Martes', 'Miércoles', 'Jueves', 'Viernes', 'Sábado'],
		dayNamesShort: ['Dom', 'Lun', 'Mar', 'Mie', 'Jue', 'Vie', 'Sáb'],
		dayNamesMin: ['Do', 'Lu', 'Ma', 'Mi', 'Ju', 'Vi', 'Sá'],
		weekHeader: 'Sm',
		dateFormat: 'dd/mm/yy',
		firstDay: 1,
		isRTL: false,
		showMonthAfterYear: false,
		yearSuffix: ''
	};
	$.datepicker.setDefaults($.datepicker.regional['es']);
	;
294 295 296
}


297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
//function defaultConfigDateRangePicker() {
//    $('.daterange-basic').daterangepicker({
//        applyClass: 'bg-slate-600',
////        "singleDatePicker": true,
//        cancelClass: 'btn-default',
////        showDropdowns: false,
////        timePicker: true,
////        opens: 'center',
////        singleDatePicker: true,
//        autoApply: true,
//        locale: {
//            format: 'DD/MM/YYYY'
//        }
//    });
////    $('.calendar.right').hide();
//}
313

314

315 316 317


(function (a) {
318 319 320 321 322 323
	a.fn.validCampo = function (b) {
		a(this).on({keypress: function (a) {
				var c = a.which, d = a.keyCode, e = String.fromCharCode(c).toLowerCase(), f = b;
				(-1 != f.indexOf(e) || 9 == d || 37 != c && 37 == d || 39 == d && 39 != c || 8 == d || 46 == d && 46 != c) && 161 != c || a.preventDefault()
			}})
	}
324
})(jQuery);
325
function primeraLetraMayuscula(str) {
326 327 328 329
	let strLower = str.toLowerCase();
	let caracter = strLower.substr(0, 1).toUpperCase();
	let cadena = caracter + strLower.substr(1);
	return cadena;
330 331 332 333
}



Billy Larru committed
334
const makeDatatable = (
335 336 337 338 339 340 341 342 343
	wrapName = ``,
	forDatatable = {
	data: [],
		columns: [],
		footerFilter: false,
		footer: false
	},
	className = ``,
	) => {
Billy Larru committed
344 345 346 347 348 349 350 351 352 353 354 355 356
	if (!wrapName) {
		return {
			message: `{wrapName} is empty`,
			status: false
		}
	}

	if (forDatatable.columns.length <= 0) {
		return {
			message: `{columns} is empty`,
			status: false
		}
	}
357

Billy Larru committed
358
	let nameDatatable = `${wrapName}-datatable`;
359

Billy Larru committed
360
	// table
361
	let table_head = `
Billy Larru committed
362 363 364
		<table id="${nameDatatable}" class="table table-hover ${className}" cellspacing="0" width="100%">`;

	// headers
365
	let table_head_th = `
366 367
		<thead>
			<tr>`;
Billy Larru committed
368
	forDatatable.columns.forEach((obj) => {
369 370 371 372 373 374 375
		let title = `undefined`;
		if (obj.title) {
			title = obj.title;
		} else if (obj.data) {
			title = obj.data;
		}
		table_head_th += `
376
			<th>${title}</th>`
377 378
	})
	table_head_th += `
379 380 381
			</tr>
		</thead>`

Billy Larru committed
382
	// footers
383
	let table_foot_th = ``;
Billy Larru committed
384
	if (forDatatable.footer) {
385
		table_foot_th = `
386 387
			<tfoot>
				<tr>`;
Billy Larru committed
388
		forDatatable.columns.forEach((obj) => {
389 390 391 392 393 394 395
			let title = `undefined`;
			if (obj.title) {
				title = obj.title;
			} else if (obj.data) {
				title = obj.data;
			}
			table_foot_th += `
396
				<th>${title}</th>`
397 398
		})
		table_foot_th += `
399 400 401
				</tr>
			</tfoot>
		`
402
	}
403

Billy Larru committed
404
	// table
405
	let table_foot = `</table>`
406

Billy Larru committed
407 408 409 410
	$(`#${wrapName}`).empty().append(`${table_head}${table_head_th}${table_foot_th}${table_foot}`);

	if (forDatatable.footerFilter) {
		// Setup - add a text input to each footer cell
411 412 413 414 415 416 417
		$(`#${nameDatatable} tfoot th`).each(function () {
			var title = $(this).text();
			$(this).html(`<input type="text" class="form-control" placeholder="${title}" />`);
		});
	}

	$(`#${nameDatatable}`)
418
		.DataTable(forDatatable);
Billy Larru committed
419 420 421

	if (forDatatable.footerFilter) {
		// DataTable
422
		let table = $(`#${nameDatatable}`).DataTable();
Billy Larru committed
423

424 425 426 427 428 429
		// Apply the search
		table.columns().every(function () {
			var that = this;
			$('input', this.footer()).on('keyup change', function () {
				if (that.search() !== this.value) {
					that
430 431
						.search(this.value)
						.draw();
432 433 434 435
				}
			});
		});

Billy Larru committed
436
		$(`#${wrapName} .dataTables_scrollBody`).appendTo(`#${wrapName} .dataTables_scroll`);
437 438 439 440
	}

	return Promise.resolve({
		datatable: $(`#${nameDatatable}`),
Billy Larru committed
441
		container: $(`#${wrapName}`)
442
	});
443 444 445 446 447
}



const randomIntFromInterval = (minimum, maximum) => {
448
	return Math.round(Math.random() * (maximum - minimum) + minimum);
449 450
}

451
const cleanQueryParams = (params = {}) => {
452 453 454 455 456 457 458 459 460
	for (var key in params) {
		if (params.hasOwnProperty(key)) {
			if (!params[key]) {
				delete params[key];
			}
		}
	}

	return params;
461 462
}

463
const initDatePicker = (...selectorName) => {
464 465
	selectorName.forEach(id => {
		let options = {
466
			format: "dd/mm/yyyy",
467
			zIndexOffset: 3000,
468 469
			autoclose: true,
			language: "es",
470 471 472 473 474 475 476 477
			onSelect: function () {
//        $(this).valid();
			}
		}
		$(id).datepicker(options);
		$(id).datepicker('setDate', 'now');
	});

478 479
}

480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531
const initDateRangePicker = (nodeIdentifier) => {
	let options = {
		"autoApply": true,
		"locale": {
			"format": "DD/MM/YYYY",
			"separator": " - ",
			"applyLabel": "Apply",
			"cancelLabel": "Cancel",
			"fromLabel": "From",
			"toLabel": "To",
			"customRangeLabel": "Custom",
			"weekLabel": "W",
			"daysOfWeek": [
				"Do",
				"Lu",
				"Ma",
				"Mi",
				"Ju",
				"Vi",
				"Sa"
			],
			"monthNames": [
				"Enero",
				"Febrero",
				"Marzo",
				"Abril",
				"Mayo",
				"Junio",
				"Julio",
				"Agosto",
				"Setiembre",
				"Octubre",
				"Noviembre",
				"Diciembre"
			],
			"firstDay": 1
		},
		"startDate": "17/08/2018",
		"endDate": "23/08/2018"
	};
	$(nodeIdentifier).daterangepicker(options);
}

const pickersNoConflict = () => {
	$.fn.datepicker.noConflict = function () {
		$.fn.datepicker = old;
		return this;
	};
}



532
const initSelect2 = (nodeIdentifier, URI, {title, subtitle} = {}) => {
533 534 535
	$(`${nodeIdentifier}`).select2({
		containerCssClass: 'select-xs',
		ajax: {
536
			url: URI,
537 538 539 540 541 542 543 544
			dataType: `json`,
			delay: 1000,
			data: function (params) {
				return {
					q: params.term, // search term
					page: params.page
				};
			},
545
			processResults: function (data, params) {
546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574
				// 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
				// scrolling can be used
				params.page = params.page || 1;

				return {
					results: data,
					pagination: {
						more: (params.page * 30) < data.length
					}
				};
			},
			cache: true
		},
		placeholder: `Buscar`,
		allowClear: true,
		escapeMarkup: function (markup) {
			return markup;
		}, // let our custom formatter work
		minimumInputLength: 1,
		templateResult: formatRepo,
		templateSelection: formatRepoSelection
	});

	function formatRepo(repo) {
		if (repo.loading) {
			return repo.text;
		}
575

576 577
		var markup = `
			<div class='select2-result-repository clearfix'>
578
				<div class='select2-result-repository__title'>${repo[title]}</div>`;
579 580
		markup += `
				<div class='select2-result-repository__statistics'>
581
					<div class='select2-result-repository__forks'>${repo[subtitle]}</div>					
582 583 584 585 586 587
				</div>		
			</div>`

		return markup;
	}

588
	function formatRepoSelection(repo) {
589
		if (repo.id) {
590
			return repo[title];
591 592 593
		} else {
			return repo.text;
		}
594
}
595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611
}



const generarFechas = (desde, hasta) => {
	let reverseDesde = desde.split("/").reverse().join("/");
	let reverseHasta = hasta.split("/").reverse().join("/");
	desde = moment(reverseDesde);
	hasta = moment(reverseHasta);
	let diaActual = desde;

	let fechas = [];
	while (diaActual.isSameOrBefore(hasta)) {
		fechas.push(diaActual.format('DD/MM/YYYY'));
		diaActual.add(1, 'days');
	}
	return fechas;
612 613
}

614 615 616 617 618 619 620 621 622 623
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();
	});
};

624
const getDataRow = (datatable, e) => datatable.DataTable().row($(e.currentTarget).parents("tr")).data()
625

626
/*ELIMINAR CUANDO PASE A PROD*/
627
//$("body").addClass("sidebar-xs")
628 629 630 631 632 633 634 635 636 637 638 639 640
/**/


const llenarCombo = (nodeIdentifier, URI, todos = false, value = "id", texto = "descripcion") => {
	return ajaxWebService.get(URI).then((response) => {
		let data = response.data
		let primeraOpcion = todos ? "[TODOS]" : "[SELECCIONE]"
		let html = `<option>${primeraOpcion}</option>`
		html += data.map((obj) => `<option value="${obj[value]}">${obj[texto]}</option>`).join("")
		$(nodeIdentifier).html(html)
		return $(nodeIdentifier)
	})
}