control_asistencia_policias.js 10.9 KB
Newer Older
1
let asistencias = [], sedes = [];
2
let htmlSedes;
3
function getColumns() {
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
	let columns = [
		{
			title: `N°`,
			data: `id`,
			className: 'text-center'
		},
		{
			title: `APELLIDOS Y NOMBRES`,
			data: `policia_nombres`
		},
		{
			title: `SEDE`,
			data: `sede_descripcion`,
			className: 'text-center'
		},
		{
			title: `HORARIO`,
			data: `horario`,
			className: 'text-center'
		},
		{
			title: `TIPO`,
			data: `tiporol_descripcion`,
			className: 'text-center'
		},
		{
			title: `FRECUENCIA`,
			data: `frecuencia_descripcion`,
			className: 'text-center'
		},
		{
			title: `FECHA ENTRADA`,
			data: `fecha_entrada`,
			className: 'text-center'
		},
		{
			title: `MARC. ENTRADA`,
			data: null,
			className: 'text-center',
			render: data => {
				let label = "";

				if (data.estado == 3 || data.estado == 4 || data.estado == 9) {
					return `-`;
				}

				if (data.huella_entrada === 1) {
					label = "text-migration font-weight-bold";
				} else if (data.huella_entrada === 0) {
					label = "text-default";
				}
55 56 57 58
				if (!data.marcacion_entrada) {
					return null;
				}

59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79

				return `<span class="${label}">${data.marcacion_entrada}</span>`;
			}
		},
		{
			title: `MARC. SALIDA`,
			data: null,
			className: 'text-center',
			render: (data) => {
				let label = "";

				if (data.estado == 3 || data.estado == 4 || data.estado == 9) {
					return `-`;
				}

				if (data.huella_salida === 1) {
					label = "text-migration font-weight-bold";
				} else if (data.huella_salida === 0) {
					label = "text-default";
				}

80 81 82 83
				if (!data.marcacion_salida) {
					return null;
				}

84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
				return `<span class="${label}">${data.marcacion_salida}</span>`;
			}
		},
		{
			title: `FECHA SALIDA`,
			data: `fecha_salida`,
			className: 'text-center'
		},
		{
			title: `ESTADO`,
			data: null,
			className: 'text-center',
			render: (data) => {
				let label = "";
				let estado = "";

				switch (data.estado) {
					case 1:
						label = "label label-success";
						estado = "TEMPRANO";
						break;
					case 2:
						label = "label label-warning";
						estado = "TARDANZA";
						break;
					case 3:
						label = "label label-danger";
						estado = "FCA";
						break;
					case 4:
						label = "label label-danger";
						estado = "FSA";
						break;
					case 5:
						label = "label label-default";
						estado = "NO MARCÓ";
						break;
					case 9:
						label = "label label-info";
						estado = "LSGH";
						break;
					case 10:
						label = "label bg-purple";
						estado = "ENTRADA PENDIENTE";
						break;
					case 11:
						label = "label bg-purple";
						estado = "SALIDA PENDIENTE";
						break;
					case null:
134
					case "":
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
						label = "label bg-purple";
						estado = "PENDIENTE";
						break;
				}

				return `<span class="${label}">${estado}</span>`;
			}
		},
		{
			title: `ACCIONES`,
			data: null,
			render: (data) => {
				let acciones = "";

				switch (data.estado) {
					case 10:
					case 11:
					case null:
153 154 155 156 157 158
						let registrar = `<span data-toggle="tooltip" data-placement="left" title="Editar" style="cursor: pointer"> <i class='registrar icon-plus-circle2 text-success-700'></i>&nbsp;&nbsp; </span>`;
						let editar = `<span data-toggle="tooltip" data-placement="left" title="Editar" style="cursor: pointer"> <i class='editar icon-pencil text-slate-800'></i>&nbsp;&nbsp; </span>`;
						let aprobar = `<span data-toggle="tooltip" data-placement="left" title="Aprobar" style="cursor: pointer"> <i class='aprobar icon-checkmark-circle text-success-700'></i>&nbsp;&nbsp; </span>`;
						let anular = `<span data-toggle="tooltip" data-placement="left" title="Anular" style="cursor: pointer"> <i class='anular icon-cancel-circle2 text-danger-700'></i>&nbsp;&nbsp; </span>`;

						acciones = registrar;
159 160
						break;
				}
161

162 163 164 165
				return acciones;
			}
		}
	];
166

167
	return columns;
168 169 170
}

function getColumnDefs() {
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
	let columnDefs = [
		{orderable: false, width: '1%', targets: 0, className: "text-center"},
		{orderable: false, width: '13%', targets: 1},
		{orderable: false, width: '8%', targets: 2, className: "text-center"},
		{orderable: false, width: '5%', targets: 3, className: "text-center"},
		{orderable: false, width: '7%', targets: 4, className: "text-center"},
		{orderable: false, width: '5%', targets: 5, className: "text-center"},
		{orderable: false, width: '6%', targets: 6, className: "text-center"},
		{orderable: false, width: '3%', targets: 7, className: "text-center"},
		{orderable: false, width: '3%', targets: 8, className: "text-center"},
		{orderable: false, width: '6%', targets: 9, className: "text-center"},
		{orderable: false, width: '5%', targets: 10, className: "text-center"},
		{orderable: false, width: '8%', targets: 11, className: "text-center"},
	];
	return columnDefs;
186 187 188 189
}


function inicializarInputsModal(data = {}){
190 191 192 193 194 195 196 197 198
	$("#spanNombres").html(data.policia_nombres);
	$("#dpAsistencia").datepicker({
		minDate: new Date(2000, 1 - 1, 1), maxDate: new Date(),
		dateFormat: 'dd/mm/yy',
		setDate: 'now',
		changeMonth: true,
		changeYear: true,
		yearRange: '-18:+0',
		onSelect: function () {
199
//        $(this).valid();
200 201 202 203
		}
	});
	$("#dpAsistencia").datepicker('setDate', data.fecha_entrada);
	$("#cboTipoRegistro").change(cambioTipoRegistro);
204 205 206
}

function mostrarMensajeResultadoModal(result = {}) {
207 208 209 210 211 212 213
	if (result.value) {
		swal({
			type: 'success',
			title: '¡Asistencia registrada!',
			showConfirmButton: false,
			timer: 1500
		})
214 215 216 217
}
}

function mostrarModalRegistroAsistencia(data = {}) {
218
	ajaxModal.get("policias/controlAsistencia/registrarAsistencia.jspf").then((response) => {
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
		swal({
			title: '<strong>Registrar Asistencia</strong>',
			html: response.data,
			showCloseButton: true,
			showCancelButton: true,
			focusConfirm: false,
			confirmButtonText: '<i class="fa fa-thumbs-up"></i> Registrar asistencia',
			confirmButtonAriaLabel: 'Thumbs up, great!',
			cancelButtonText: 'Cancelar',
			cancelButtonAriaLabel: 'Thumbs down',
			width: '30%',
			onOpen: () => {
				inicializarInputsModal(data);
			}
		}).then((result) => {
			mostrarMensajeResultadoModal(result);
		});
	});
237 238
}
function listarAsistencias(objParams = {}) {
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
	ajaxWebService.get(URI_POLICIAS_ASISTENCIA, objParams).then((response) => {
		let columns = getColumns();
		let columnDefs = getColumnDefs();
		let wrapsNameDatatable = `divAsistencias`;
		let classNameForDatatable = `display table table-bordered`;
		debugger
		makeDatatable(
		  wrapsNameDatatable,
		  {
			  data: response.data,
			  columns,
			  columnDefs,
		  },
		  classNameForDatatable
		  ).then((nodes) => {
254 255 256 257 258 259
			nodes.container
			  .off()
			  .on("click", ".registrar", function () {
				  let data = nodes.datatable.DataTable().row($(this).parents("tr")).data();
				  mostrarModalRegistroAsistencia(data);
			  });
260 261 262
		});
	}
	);
263
}
264
function listarPolicias(selectorName) {
265 266 267 268 269 270 271 272
	ajaxWebService.get(URI_POLICIAS).then((result) => {
		let policias = result.data;
		policias = _.orderBy(policias, p => p.nombres);
		let html = `<option value="">[TODOS]</option>`;
		policias.forEach(p => html += `<option documento_identidad="${p.dni}" value="${p.id}">${p.nombres}</option>`);
		$(`${selectorName}`).html(html);
		$('.select-search').select2();
	});
273
}
274 275


276
function listarEstadoAsistencia() {
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
	ajaxWebService.get(URI_ESTADO_ASISTENCIA).then((response) => {
		let estados = response.data;
		let html = "";
		estados.forEach(e => html += `<option value="${e.codigo}">${e.nombre}</option>`);
		$("#cboEstadoAsistencia").html(html);
		$("#cboEstadoAsistencia").selectpicker('refresh');
		$('.selectpicker').selectpicker({
			style: 'btn-info',
			size: 4
		});
		$(".btn.dropdown-toggle.bs-placeholder").removeClass("btn-info");
		$(".btn.dropdown-toggle.bs-placeholder").css({
			border: "1px solid #ddd",
			backgroundColor: "#fff"
		});
	});
293 294
}

295
function cambioTipoRegistro() {
296 297 298 299 300 301 302 303 304 305
	debugger
	let criterio = $(this).val();
	console.log(criterio);
	if (criterio == 0) {
		let html = ``;
		$("#divFiltroModal").html(html);
	}
	if (criterio == 1 || criterio == 2) {
		let html =
		  `<div class=''>                        
306 307 308 309 310 311 312 313 314 315 316 317
                        <div class="form-group col-md-6">                                            
                           <label style="font-size: small">
                               Marcación: 
                           </label>
                           <span class="text-danger"> (*)</span>
                           <select id="cboTipoAsistencia" class="form-control">
                                        <option value="0">[SELECCIONE]</option>
                                        <option value="1">ENTRADA</option>
                                        <option value="2">SALIDA</option>
                            </select>                                            
                       </div>
                       <div class="form-group col-md-6">                                            
318 319 320 321
                           <label style="font-size: small">
                               Hora: 
                           </label>
                           <span class="text-danger"> (*)</span>
322
                           <input type="time" id="txtHora" name="txtHora" value="" class="form-control" placeholder="Ingrese la hora" style="text-transform:uppercase;">                                            
323 324
                       </div> 
                    </div>`;
325 326 327 328
		$("#divFiltroModal").html(html);
	} else if (criterio == 3 || criterio == 4) {
		let html =
		  `<div class='col-md-12'>
329 330 331 332 333 334 335 336
                       <div class="form-group">                                            
                           <label style="font-size: small">
                               Observación: 
                           </label>
                           <span class="text-danger"> (*)</span>
                           <textarea type="text" id="txtObservacion" name="txtObservacion" value="" class="form-control" placeholder="Ingrese el motivo de la falta" rows="3" style="resize: none;"/>                                            
                       </div> 
                   </div>`;
337 338
		$("#divFiltroModal").html(html);
	}
339 340 341
}


342
function buscar() {
343
	debugger
344 345
	let policia_id = $("#cboPoliciasFiltro").val();
	let sede_id = $("#cboSedesFiltro").val();
346
	let estadoAsistencia = $("#cboEstadoAsistencia").val();
347 348
	let fechaInicio = $("#dpFechaInicio").val();
	let fechaFin = $("#dpFechaFin").val();
349

350
	let rangoFechas = generarFechas(fechaInicio, fechaFin);
351

352 353
	let params = cleanQueryParams({
		policia_id,
354
		sede_id,
355
		fecha_entrada: rangoFechas,
356
		estado: estadoAsistencia
357
	});
358
	debugger
359
	listarAsistencias({params});
360 361
}

362
$().ready(function () {
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
	defaultConfigDatePicker();
	listarEstadoAsistencia();
	listarPolicias("#cboPoliciasFiltro");
	listarSedes("#cboSedesFiltro");
	$('.selectpicker').selectpicker({
		style: 'btn-info',
		size: 4
	});


	$(".btn.dropdown-toggle.bs-placeholder").removeClass("btn-info");
	$(".btn.dropdown-toggle.bs-placeholder").css({
		border: "1px solid #ddd",
		backgroundColor: "#fff"
	});

	initDatePicker("#dpFechaInicio", "#dpFechaFin");
	$("#btnVerTodos").click(listarAsistencias);
381
	$("#btnAplicarFiltro").click(buscar);
382 383 384
});