sigesp 0.9.62-20230912 → 0.9.63-20230912
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 +11 -0
- 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/RecursosHumanos.js +1 -1
- package/esm2015/lib/core/models/SNO/MCargosPersonal.model.js +8 -1
- package/esm2015/lib/core/models/SNO/MPersonal.model.js +5 -1
- package/fesm2015/sigesp.js +11 -0
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/RecursosHumanos.d.ts +5 -0
- package/lib/core/models/SNO/MCargosPersonal.model.d.ts +3 -0
- package/lib/core/models/SNO/MPersonal.model.d.ts +2 -0
- package/package.json +1 -1
package/bundles/sigesp.umd.js
CHANGED
|
@@ -5299,6 +5299,8 @@
|
|
|
5299
5299
|
_this.fechaActaDefuncion = '1900-01-01';
|
|
5300
5300
|
_this.numeroActaDefuncion = '';
|
|
5301
5301
|
_this.denominacionSituacion = '';
|
|
5302
|
+
_this.codigoClasificadorPersonal = '';
|
|
5303
|
+
_this.denominacionClasificadorPersonal = '';
|
|
5302
5304
|
if (p) {
|
|
5303
5305
|
_this.idEnterprise = +p.id_enterprise;
|
|
5304
5306
|
_this.idEmpresa = p.id_empresa;
|
|
@@ -5421,6 +5423,8 @@
|
|
|
5421
5423
|
_this.descripcionPuestoTrabajo = p.despuetra;
|
|
5422
5424
|
_this.codigoPuestoTrabajo = p.codpuetra;
|
|
5423
5425
|
_this.denominacionSituacion = (SituacionPersonal.find(function (e) { return e.value == p.situacion; }).denominacion).toLocaleUpperCase();
|
|
5426
|
+
_this.codigoClasificadorPersonal = p.codclaper;
|
|
5427
|
+
_this.denominacionClasificadorPersonal = p.denclaper;
|
|
5424
5428
|
}
|
|
5425
5429
|
else {
|
|
5426
5430
|
_this.isNew = true;
|
|
@@ -9422,6 +9426,9 @@
|
|
|
9422
9426
|
_this.idClasificadorDocente = 0;
|
|
9423
9427
|
_this.codigoClasificador = '';
|
|
9424
9428
|
_this.denominacionClasificador = '';
|
|
9429
|
+
_this.idClasificadorPersonal = 0;
|
|
9430
|
+
_this.codigoClasificadorPersonal = '';
|
|
9431
|
+
_this.denominacionClasificadorPersonal = '';
|
|
9425
9432
|
_this.detallesOrganigrama = [];
|
|
9426
9433
|
_this.detallesNomina = [];
|
|
9427
9434
|
if (p) {
|
|
@@ -9452,6 +9459,9 @@
|
|
|
9452
9459
|
_this.idClasificadorDocente = +p.id_clasificacion_docente;
|
|
9453
9460
|
_this.codigoClasificador = p.codcladoc;
|
|
9454
9461
|
_this.denominacionClasificador = p.dencladec;
|
|
9462
|
+
_this.idClasificadorPersonal = +p.id_claper;
|
|
9463
|
+
_this.codigoClasificadorPersonal = p.codclaper;
|
|
9464
|
+
_this.denominacionClasificadorPersonal = p.denclaper;
|
|
9455
9465
|
if (p.detalles_organigrama) {
|
|
9456
9466
|
_this.detallesOrganigrama = p.detalles_organigrama.map(function (e) { return new MCargoEstructuraOrganizativa(e); });
|
|
9457
9467
|
}
|
|
@@ -9476,6 +9486,7 @@
|
|
|
9476
9486
|
id_ubifis: this.idUbicacionFisica.toString(),
|
|
9477
9487
|
id_personalcargo: this.idPersonalCargo.toString(),
|
|
9478
9488
|
id_clasificacion_docente: this.idClasificadorDocente.toString(),
|
|
9489
|
+
id_claper: this.idClasificadorPersonal.toString(),
|
|
9479
9490
|
detalles_organigrama: this.detallesOrganigrama.map(function (e) { return e.dataInterface(); }),
|
|
9480
9491
|
detalles_nomina: this.detallesNomina.map(function (e) { return e.dataInterface(); }),
|
|
9481
9492
|
};
|