sigesp 0.8.57-220110 → 0.8.58-220110
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 +6 -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/MPersonal.model.js +7 -1
- package/fesm2015/sigesp.js +6 -0
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/RecursosHumanos.d.ts +2 -0
- package/lib/core/models/SNO/MPersonal.model.d.ts +2 -0
- package/package.json +1 -1
package/bundles/sigesp.umd.js
CHANGED
|
@@ -4089,6 +4089,8 @@
|
|
|
4089
4089
|
_this.nombreEstado = '';
|
|
4090
4090
|
_this.nombreMunicipio = '';
|
|
4091
4091
|
_this.nombreParroquia = '';
|
|
4092
|
+
_this.nombrePaisNacimiento = '';
|
|
4093
|
+
_this.nombreEstadoNacimiento = '';
|
|
4092
4094
|
if (p) {
|
|
4093
4095
|
_this.idEmpresa = +p.id_empresa;
|
|
4094
4096
|
_this.idPersonal = +p.id_personal;
|
|
@@ -4197,6 +4199,8 @@
|
|
|
4197
4199
|
_this.nombreEstado = p.desest;
|
|
4198
4200
|
_this.nombreMunicipio = p.desmun;
|
|
4199
4201
|
_this.nombreParroquia = p.despar;
|
|
4202
|
+
_this.nombreEstadoNacimiento = p.desest_nac;
|
|
4203
|
+
_this.nombrePaisNacimiento = p.despai_nac;
|
|
4200
4204
|
}
|
|
4201
4205
|
else {
|
|
4202
4206
|
_this.isNew = true;
|
|
@@ -4299,6 +4303,8 @@
|
|
|
4299
4303
|
desest: this.nombreEstado,
|
|
4300
4304
|
desmun: this.nombreMunicipio,
|
|
4301
4305
|
despar: this.nombreParroquia,
|
|
4306
|
+
desest_nac: this.nombreEstadoNacimiento,
|
|
4307
|
+
despai_nac: this.nombrePaisNacimiento,
|
|
4302
4308
|
};
|
|
4303
4309
|
};
|
|
4304
4310
|
return MPersonal;
|