sigesp 0.8.95-20220530 → 0.8.96-20220530

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;
@@ -8449,6 +8456,9 @@
8449
8456
  _this.montoSalarioGrado = 0;
8450
8457
  _this.montoCompensacionGrado = 0;
8451
8458
  _this.estatusMPPPE = false;
8459
+ _this.idClasificadorDocente = 0;
8460
+ _this.codigoClasificador = '';
8461
+ _this.denominacionClasificador = '';
8452
8462
  _this.detallesOrganigrama = [];
8453
8463
  _this.detallesNomina = [];
8454
8464
  if (p) {
@@ -8474,6 +8484,9 @@
8474
8484
  _this.montoSalarioGrado = parseFloat(p.moncomgra);
8475
8485
  _this.montoCompensacionGrado = parseFloat(p.moncomgra);
8476
8486
  _this.estatusMPPPE = p.estmpppe == '1' ? true : false;
8487
+ _this.idClasificadorDocente = +p.id_clasificacion_docente;
8488
+ _this.codigoClasificador = p.codcladoc;
8489
+ _this.denominacionClasificador = p.dencladec;
8477
8490
  if (p.detalles_organigrama) {
8478
8491
  _this.detallesOrganigrama = p.detalles_organigrama.map(function (e) { return new MCargoEstructuraOrganizativa(e); });
8479
8492
  }
@@ -8496,6 +8509,7 @@
8496
8509
  codpas: this.codigoPaso,
8497
8510
  id_ubifis: this.idUbicacionFisica.toString(),
8498
8511
  id_personalcargo: this.idPersonalCargo.toString(),
8512
+ id_clasificacion_docente: this.idClasificadorDocente.toString(),
8499
8513
  detalles_organigrama: this.detallesOrganigrama.map(function (e) { return e.dataInterface(); }),
8500
8514
  detalles_nomina: this.detallesNomina.map(function (e) { return e.dataInterface(); }),
8501
8515
  };
@@ -13120,6 +13134,7 @@
13120
13134
  { value: "horper1", denominacion: "horaAdicional1" },
13121
13135
  { value: "horper2", denominacion: "horaAdicional2" },
13122
13136
  { value: "id_organigrama", denominacion: "idOrganigrama" },
13137
+ { value: "id_clasificacion_docente", denominacion: "idClasificadorDocente" },
13123
13138
  ];
13124
13139
  var Eventos = [
13125
13140
  { value: "UPDATE" },