sigesp 0.8.71-220304 → 0.8.72-220304
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 +5 -3
- 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/Nomina.js +1 -1
- package/esm2015/lib/core/interfaces/RecursosHumanos.js +1 -1
- package/esm2015/lib/core/models/SNO/MPersonal.model.js +3 -1
- package/esm2015/lib/core/models/SNO/MPersonalNomina.model.js +4 -4
- package/fesm2015/sigesp.js +5 -3
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/Nomina.d.ts +1 -1
- package/lib/core/interfaces/RecursosHumanos.d.ts +1 -0
- package/lib/core/models/SNO/MPersonal.model.d.ts +1 -0
- package/lib/core/models/SNO/MPersonalNomina.model.d.ts +1 -1
- package/package.json +1 -1
package/bundles/sigesp.umd.js
CHANGED
|
@@ -434,7 +434,7 @@
|
|
|
434
434
|
_this.denominacionEstatus = '';
|
|
435
435
|
_this.nombreCompleto = '';
|
|
436
436
|
_this.nominaRac = 0;
|
|
437
|
-
_this.
|
|
437
|
+
_this.situacionPersonal = '';
|
|
438
438
|
_this.montoPension = 0;
|
|
439
439
|
if (e) {
|
|
440
440
|
_this.idEmpresa = parseInt(e.id_empresa);
|
|
@@ -515,7 +515,7 @@
|
|
|
515
515
|
_this.denominacionEstatus = e.staper == '3' ? 'EGRESADO' : 'SUSPENDIDO';
|
|
516
516
|
_this.apellidoPersonal = e.apeper;
|
|
517
517
|
_this.nombreCompleto = _this.nombrePersonal + ' ' + _this.apellidoPersonal;
|
|
518
|
-
_this.
|
|
518
|
+
_this.situacionPersonal = e.situacion;
|
|
519
519
|
_this.montoPension = +e.monpen;
|
|
520
520
|
_this.nominaRac = parseInt(e.racnom);
|
|
521
521
|
if (_this.nominaRac == 0) {
|
|
@@ -526,7 +526,7 @@
|
|
|
526
526
|
if (_this.idTabulador >= 0 && _this.nominaRac == 1) {
|
|
527
527
|
_this.sueldoPersonal = _this.montoSaldoGrado;
|
|
528
528
|
}
|
|
529
|
-
if (_this.
|
|
529
|
+
if (_this.situacionPersonal == 'J') {
|
|
530
530
|
_this.sueldoPersonal = _this.montoPension;
|
|
531
531
|
}
|
|
532
532
|
if (_this.idAgencia > 0) {
|
|
@@ -4193,6 +4193,7 @@
|
|
|
4193
4193
|
_this.nombreEstadoNacimiento = '';
|
|
4194
4194
|
_this.codigoProfesion = '';
|
|
4195
4195
|
_this.denominacionProfesion = '';
|
|
4196
|
+
_this.montoPension = 0;
|
|
4196
4197
|
if (p) {
|
|
4197
4198
|
_this.idEmpresa = +p.id_empresa;
|
|
4198
4199
|
_this.idPersonal = +p.id_personal;
|
|
@@ -4305,6 +4306,7 @@
|
|
|
4305
4306
|
_this.nombrePaisNacimiento = p.despai_nac;
|
|
4306
4307
|
_this.codigoProfesion = p.codpro;
|
|
4307
4308
|
_this.denominacionProfesion = p.denpro;
|
|
4309
|
+
_this.montoPension = +p.monpen;
|
|
4308
4310
|
}
|
|
4309
4311
|
else {
|
|
4310
4312
|
_this.isNew = true;
|