sigesp 0.9.102-20240224 → 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.
- package/bundles/sigesp.umd.js +23 -1
- package/bundles/sigesp.umd.js.map +1 -1
- package/bundles/sigesp.umd.min.js +1 -1
- package/bundles/sigesp.umd.min.js.map +1 -1
- package/esm2015/lib/core/interfaces/Constantes.js +2 -1
- package/esm2015/lib/core/interfaces/Nomina.js +1 -1
- package/esm2015/lib/core/interfaces/RecursosHumanos.js +1 -1
- package/esm2015/lib/core/models/SNO/MPersonal.model.js +10 -1
- package/esm2015/lib/core/models/SNO/MPersonalJubilado.model.js +7 -1
- package/esm2015/lib/core/models/SNO/MPersonalNomina.model.js +8 -2
- package/fesm2015/sigesp.js +23 -1
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/Nomina.d.ts +3 -0
- package/lib/core/interfaces/RecursosHumanos.d.ts +6 -0
- package/lib/core/models/SNO/MPersonal.model.d.ts +3 -0
- package/lib/core/models/SNO/MPersonalJubilado.model.d.ts +3 -0
- package/lib/core/models/SNO/MPersonalNomina.model.d.ts +3 -0
- package/package.json +1 -1
- package/sigesp.metadata.json +1 -1
package/bundles/sigesp.umd.js
CHANGED
|
@@ -542,6 +542,7 @@
|
|
|
542
542
|
{ value: "9", denominacion: 'Clasificación de Personal' },
|
|
543
543
|
{ value: "3", denominacion: 'Nivel de Selección' },
|
|
544
544
|
{ value: "4", denominacion: 'Profesiones' },
|
|
545
|
+
{ value: "16", denominacion: 'Permisos Personal' },
|
|
545
546
|
{ value: "14", denominacion: 'Sindicato' },
|
|
546
547
|
{ value: "5", denominacion: 'Tipo de Accidentes' },
|
|
547
548
|
{ value: "6", denominacion: 'Tipo de Cobertura de Salud' },
|
|
@@ -989,6 +990,9 @@
|
|
|
989
990
|
_this.idPlanHorario = 0;
|
|
990
991
|
_this.codigoPlanHorario = '';
|
|
991
992
|
_this.denominacionPlanHorario = '';
|
|
993
|
+
_this.idPermisoPersonal = 0;
|
|
994
|
+
_this.codigoPermisoPersonal = '';
|
|
995
|
+
_this.denominacionPermisoPersonal = '';
|
|
992
996
|
if (e) {
|
|
993
997
|
_this.idEnterprise = +e.id_enterprise;
|
|
994
998
|
_this.idEmpresa = e.id_empresa;
|
|
@@ -1098,6 +1102,9 @@
|
|
|
1098
1102
|
_this.idPlanHorario = +e.id_planhor;
|
|
1099
1103
|
_this.codigoPlanHorario = e.codplanhor;
|
|
1100
1104
|
_this.denominacionPlanHorario = e.denplanhor;
|
|
1105
|
+
_this.idPermisoPersonal = +e.id_perper;
|
|
1106
|
+
_this.denominacionPermisoPersonal = e.denperper;
|
|
1107
|
+
_this.codigoPermisoPersonal = e.codperper;
|
|
1101
1108
|
}
|
|
1102
1109
|
else {
|
|
1103
1110
|
_this.isNew = true;
|
|
@@ -1196,7 +1203,7 @@
|
|
|
1196
1203
|
monsalgra: this.montoSaldoGrado.toString(),
|
|
1197
1204
|
apeper: this.apellidoPersonal,
|
|
1198
1205
|
id_clasificacion_docente: this.idClasificadorDocente.toString(),
|
|
1199
|
-
id_planhor: this.idPlanHorario.toString()
|
|
1206
|
+
id_planhor: this.idPlanHorario.toString(),
|
|
1200
1207
|
};
|
|
1201
1208
|
};
|
|
1202
1209
|
return MPersonalNomina;
|
|
@@ -5712,6 +5719,9 @@
|
|
|
5712
5719
|
_this.denominacionSituacion = '';
|
|
5713
5720
|
_this.codigoClasificadorPersonal = '';
|
|
5714
5721
|
_this.denominacionClasificadorPersonal = '';
|
|
5722
|
+
_this.idPermisoPersonal = 0;
|
|
5723
|
+
_this.codigoPermisoPersonal = '';
|
|
5724
|
+
_this.denominacionPermisoPersonal = '';
|
|
5715
5725
|
if (p) {
|
|
5716
5726
|
_this.idEnterprise = +p.id_enterprise;
|
|
5717
5727
|
_this.idEmpresa = p.id_empresa;
|
|
@@ -5838,6 +5848,9 @@
|
|
|
5838
5848
|
_this.denominacionSituacion = (SituacionPersonal.find(function (e) { return e.value == p.situacion; }).denominacion).toLocaleUpperCase();
|
|
5839
5849
|
_this.codigoClasificadorPersonal = p.codclaper;
|
|
5840
5850
|
_this.denominacionClasificadorPersonal = p.denclaper;
|
|
5851
|
+
_this.idPermisoPersonal = +p.id_perper;
|
|
5852
|
+
_this.denominacionPermisoPersonal = p.denperper;
|
|
5853
|
+
_this.codigoPermisoPersonal = p.codperper;
|
|
5841
5854
|
}
|
|
5842
5855
|
else {
|
|
5843
5856
|
_this.isNew = true;
|
|
@@ -5953,6 +5966,9 @@
|
|
|
5953
5966
|
fecdef: this.fechaDefuncion,
|
|
5954
5967
|
fecactdef: this.fechaActaDefuncion,
|
|
5955
5968
|
numactdef: this.numeroActaDefuncion,
|
|
5969
|
+
id_perper: this.idPermisoPersonal.toString(),
|
|
5970
|
+
denperper: this.denominacionPermisoPersonal,
|
|
5971
|
+
codperper: this.codigoPermisoPersonal,
|
|
5956
5972
|
};
|
|
5957
5973
|
};
|
|
5958
5974
|
return MPersonal;
|
|
@@ -14016,6 +14032,9 @@
|
|
|
14016
14032
|
_this.fechaResolucion = '1900-01-01';
|
|
14017
14033
|
_this.numeroResolucion = '';
|
|
14018
14034
|
_this.porcentajeDiscapacidad = 0;
|
|
14035
|
+
_this.idPermisoPersonal = 0;
|
|
14036
|
+
_this.codigoPermisoPersonal = '';
|
|
14037
|
+
_this.denominacionPermisoPersonal = '';
|
|
14019
14038
|
if (e) {
|
|
14020
14039
|
_this.idEnterprise = +e.id_enterprise;
|
|
14021
14040
|
_this.idEmpresa = +e.id_empresa;
|
|
@@ -14031,6 +14050,9 @@
|
|
|
14031
14050
|
_this.fechaResolucion = e.fecres;
|
|
14032
14051
|
_this.numeroResolucion = e.numres;
|
|
14033
14052
|
_this.porcentajeDiscapacidad = +e.pordis;
|
|
14053
|
+
_this.idPermisoPersonal = +e.id_perper;
|
|
14054
|
+
_this.denominacionPermisoPersonal = e.denperper;
|
|
14055
|
+
_this.codigoPermisoPersonal = e.codperper;
|
|
14034
14056
|
}
|
|
14035
14057
|
else {
|
|
14036
14058
|
_this.isNew = true;
|