sigesp 0.8.94-20220529 → 0.8.97-20220614

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -415,6 +415,9 @@
415
415
  _this.situacionPersonal = '';
416
416
  _this.montoPension = 0;
417
417
  _this.nacionalidad = '';
418
+ _this.idClasificadorDocente = 0;
419
+ _this.codigoClasificador = '';
420
+ _this.denominacionClasificador = '';
418
421
  if (e) {
419
422
  _this.idEmpresa = parseInt(e.id_empresa);
420
423
  _this.idPersonalNomina = parseInt(e.id_personalnomina);
@@ -497,6 +500,9 @@
497
500
  _this.nombreCompleto = _this.nombrePersonal + ' ' + _this.apellidoPersonal;
498
501
  _this.situacionPersonal = e.situacion;
499
502
  _this.montoPension = +e.monpen;
503
+ _this.idClasificadorDocente = +e.id_clasificacion_docente;
504
+ _this.codigoClasificador = e.codcladoc;
505
+ _this.denominacionClasificador = e.dencladec;
500
506
  _this.nominaRac = parseInt(e.racnom);
501
507
  if (_this.nominaRac == 0) {
502
508
  _this.idTabulador = 0;
@@ -615,6 +621,7 @@
615
621
  estmpppe: this.estatusMPPPE ? '1' : '0',
616
622
  monsalgra: this.montoSaldoGrado.toString(),
617
623
  apeper: this.apellidoPersonal,
624
+ id_clasificacion_docente: this.idClasificadorDocente.toString(),
618
625
  };
619
626
  };
620
627
  return MPersonalNomina;
@@ -4252,6 +4259,7 @@
4252
4259
  { value: "1", denominacion: 'Categoria del Rango' },
4253
4260
  { value: "2", denominacion: 'Causa Retiro' },
4254
4261
  { value: "11", denominacion: 'Centros Médicos' },
4262
+ { value: "15", denominacion: 'Clasificador Docente' },
4255
4263
  { value: "9", denominacion: 'Clasificación de Personal' },
4256
4264
  { value: "3", denominacion: 'Nivel de Selección' },
4257
4265
  { value: "4", denominacion: 'Profesiones' },
@@ -6136,8 +6144,7 @@
6136
6144
  * @author Miguel Ramírez
6137
6145
  */
6138
6146
  SigespService.prototype.onlyNumbers = function (event) {
6139
- // console.log(event);
6140
- if (!isNaN(+event.key) || event.keyCode == 8) {
6147
+ if (!isNaN(+event.key) && event.keyCode != 32) {
6141
6148
  return true;
6142
6149
  }
6143
6150
  return false;
@@ -8448,6 +8455,9 @@
8448
8455
  _this.montoSalarioGrado = 0;
8449
8456
  _this.montoCompensacionGrado = 0;
8450
8457
  _this.estatusMPPPE = false;
8458
+ _this.idClasificadorDocente = 0;
8459
+ _this.codigoClasificador = '';
8460
+ _this.denominacionClasificador = '';
8451
8461
  _this.detallesOrganigrama = [];
8452
8462
  _this.detallesNomina = [];
8453
8463
  if (p) {
@@ -8473,6 +8483,9 @@
8473
8483
  _this.montoSalarioGrado = parseFloat(p.moncomgra);
8474
8484
  _this.montoCompensacionGrado = parseFloat(p.moncomgra);
8475
8485
  _this.estatusMPPPE = p.estmpppe == '1' ? true : false;
8486
+ _this.idClasificadorDocente = +p.id_clasificacion_docente;
8487
+ _this.codigoClasificador = p.codcladoc;
8488
+ _this.denominacionClasificador = p.dencladec;
8476
8489
  if (p.detalles_organigrama) {
8477
8490
  _this.detallesOrganigrama = p.detalles_organigrama.map(function (e) { return new MCargoEstructuraOrganizativa(e); });
8478
8491
  }
@@ -8495,6 +8508,7 @@
8495
8508
  codpas: this.codigoPaso,
8496
8509
  id_ubifis: this.idUbicacionFisica.toString(),
8497
8510
  id_personalcargo: this.idPersonalCargo.toString(),
8511
+ id_clasificacion_docente: this.idClasificadorDocente.toString(),
8498
8512
  detalles_organigrama: this.detallesOrganigrama.map(function (e) { return e.dataInterface(); }),
8499
8513
  detalles_nomina: this.detallesNomina.map(function (e) { return e.dataInterface(); }),
8500
8514
  };
@@ -13119,6 +13133,7 @@
13119
13133
  { value: "horper1", denominacion: "horaAdicional1" },
13120
13134
  { value: "horper2", denominacion: "horaAdicional2" },
13121
13135
  { value: "id_organigrama", denominacion: "idOrganigrama" },
13136
+ { value: "id_clasificacion_docente", denominacion: "idClasificadorDocente" },
13122
13137
  ];
13123
13138
  var Eventos = [
13124
13139
  { value: "UPDATE" },