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.
@@ -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;