sigesp 0.9.70-20230914 → 0.9.72-20230917

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.
@@ -5149,6 +5149,9 @@
5149
5149
  _this.denominacionEstructuraOrganizativa = '';
5150
5150
  _this.idPersonal = 0;
5151
5151
  _this.idPersonalNomina = 0;
5152
+ _this.idPlanHorario = 0;
5153
+ _this.codigoPlanHorario = '';
5154
+ _this.denominacionPlanHorario = '';
5152
5155
  if (e) {
5153
5156
  _this.idEnterprise = +e.id_enterprise;
5154
5157
  _this.idEmpresa = +e.id_empresa;
@@ -5178,6 +5181,9 @@
5178
5181
  _this.denominacionEstructuraOrganizativa = e.denestorg;
5179
5182
  _this.idPersonal = +e.id_personal;
5180
5183
  _this.idPersonalNomina = +e.id_personalnomina;
5184
+ _this.idPlanHorario = +e.id_planhor;
5185
+ _this.codigoPlanHorario = e.codplanhor;
5186
+ _this.denominacionPlanHorario = e.denplanhor;
5181
5187
  }
5182
5188
  else {
5183
5189
  _this.isNew = true;
@@ -5193,6 +5199,7 @@
5193
5199
  id_personal: this.idPersonal.toString(),
5194
5200
  id_personalnomina: this.idPersonalNomina.toString(),
5195
5201
  id_organigrama: this.idOrganigrama.toString(),
5202
+ id_planhor: this.idPlanHorario.toString()
5196
5203
  };
5197
5204
  };
5198
5205
  return MNominaSimple;
@@ -11409,7 +11416,7 @@
11409
11416
  _this.fechaNacimientoFamiliar = '';
11410
11417
  _this.nexoFamiliar = 'C';
11411
11418
  _this.denominacionNexo = '';
11412
- _this.estatudiaFamiliar = '0';
11419
+ _this.estatudiaFamiliar = false;
11413
11420
  _this.HCFamiliar = false;
11414
11421
  _this.HCMFamiliar = false;
11415
11422
  _this.hijoEspecial = false;
@@ -11434,7 +11441,7 @@
11434
11441
  _this.sexoFamiliar = e.sexfam;
11435
11442
  _this.fechaNacimientoFamiliar = e.fecnacfam;
11436
11443
  _this.nexoFamiliar = e.nexfam;
11437
- _this.estatudiaFamiliar = e.estfam;
11444
+ _this.estatudiaFamiliar = e.estfam == '1' ? true : false;
11438
11445
  _this.HCFamiliar = e.hcfam == '1' ? true : false;
11439
11446
  _this.HCMFamiliar = e.hcmfam == '1' ? true : false;
11440
11447
  _this.hijoEspecial = e.hijesp == '1' ? true : false;