sigesp 0.9.103-20240401 → 0.9.104-20240402

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.
@@ -990,6 +990,9 @@
990
990
  _this.idPlanHorario = 0;
991
991
  _this.codigoPlanHorario = '';
992
992
  _this.denominacionPlanHorario = '';
993
+ _this.idPermisoPersonal = 0;
994
+ _this.codigoPermisoPersonal = '';
995
+ _this.denominacionPermisoPersonal = '';
993
996
  if (e) {
994
997
  _this.idEnterprise = +e.id_enterprise;
995
998
  _this.idEmpresa = e.id_empresa;
@@ -1099,6 +1102,9 @@
1099
1102
  _this.idPlanHorario = +e.id_planhor;
1100
1103
  _this.codigoPlanHorario = e.codplanhor;
1101
1104
  _this.denominacionPlanHorario = e.denplanhor;
1105
+ _this.idPermisoPersonal = +e.id_perper;
1106
+ _this.denominacionPermisoPersonal = e.denperper;
1107
+ _this.codigoPermisoPersonal = e.codperper;
1102
1108
  }
1103
1109
  else {
1104
1110
  _this.isNew = true;
@@ -1197,7 +1203,7 @@
1197
1203
  monsalgra: this.montoSaldoGrado.toString(),
1198
1204
  apeper: this.apellidoPersonal,
1199
1205
  id_clasificacion_docente: this.idClasificadorDocente.toString(),
1200
- id_planhor: this.idPlanHorario.toString()
1206
+ id_planhor: this.idPlanHorario.toString(),
1201
1207
  };
1202
1208
  };
1203
1209
  return MPersonalNomina;
@@ -5713,6 +5719,9 @@
5713
5719
  _this.denominacionSituacion = '';
5714
5720
  _this.codigoClasificadorPersonal = '';
5715
5721
  _this.denominacionClasificadorPersonal = '';
5722
+ _this.idPermisoPersonal = 0;
5723
+ _this.codigoPermisoPersonal = '';
5724
+ _this.denominacionPermisoPersonal = '';
5716
5725
  if (p) {
5717
5726
  _this.idEnterprise = +p.id_enterprise;
5718
5727
  _this.idEmpresa = p.id_empresa;
@@ -5839,6 +5848,9 @@
5839
5848
  _this.denominacionSituacion = (SituacionPersonal.find(function (e) { return e.value == p.situacion; }).denominacion).toLocaleUpperCase();
5840
5849
  _this.codigoClasificadorPersonal = p.codclaper;
5841
5850
  _this.denominacionClasificadorPersonal = p.denclaper;
5851
+ _this.idPermisoPersonal = +p.id_perper;
5852
+ _this.denominacionPermisoPersonal = p.denperper;
5853
+ _this.codigoPermisoPersonal = p.codperper;
5842
5854
  }
5843
5855
  else {
5844
5856
  _this.isNew = true;
@@ -5954,6 +5966,9 @@
5954
5966
  fecdef: this.fechaDefuncion,
5955
5967
  fecactdef: this.fechaActaDefuncion,
5956
5968
  numactdef: this.numeroActaDefuncion,
5969
+ id_perper: this.idPermisoPersonal.toString(),
5970
+ denperper: this.denominacionPermisoPersonal,
5971
+ codperper: this.codigoPermisoPersonal,
5957
5972
  };
5958
5973
  };
5959
5974
  return MPersonal;
@@ -14017,6 +14032,9 @@
14017
14032
  _this.fechaResolucion = '1900-01-01';
14018
14033
  _this.numeroResolucion = '';
14019
14034
  _this.porcentajeDiscapacidad = 0;
14035
+ _this.idPermisoPersonal = 0;
14036
+ _this.codigoPermisoPersonal = '';
14037
+ _this.denominacionPermisoPersonal = '';
14020
14038
  if (e) {
14021
14039
  _this.idEnterprise = +e.id_enterprise;
14022
14040
  _this.idEmpresa = +e.id_empresa;
@@ -14032,6 +14050,9 @@
14032
14050
  _this.fechaResolucion = e.fecres;
14033
14051
  _this.numeroResolucion = e.numres;
14034
14052
  _this.porcentajeDiscapacidad = +e.pordis;
14053
+ _this.idPermisoPersonal = +e.id_perper;
14054
+ _this.denominacionPermisoPersonal = e.denperper;
14055
+ _this.codigoPermisoPersonal = e.codperper;
14035
14056
  }
14036
14057
  else {
14037
14058
  _this.isNew = true;