sigesp 0.9.71-20230915 → 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;