sigesp 1.0.16-20240818 → 1.0.17-20240820

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.
@@ -4744,6 +4744,9 @@ class MDefinicionNomina extends MBasicModel {
4744
4744
  if (e.periodos) {
4745
4745
  this.periodosNomina = e.periodos.map(e => new MPeriodoNomina(e));
4746
4746
  }
4747
+ if (e.procesos) {
4748
+ this.procesosNomina = e.procesos.map(e => new MProcesosNomina(e));
4749
+ }
4747
4750
  this.idPeriodoNomina = parseInt(e.id_periodoactual);
4748
4751
  this.idPeriodoRestablecerNomina = parseInt(e.id_perresnom);
4749
4752
  this.idUnidadAdministradora = +e.id_uniadm;
@@ -4814,6 +4817,7 @@ class MDefinicionNomina extends MBasicModel {
4814
4817
  segper: this.segmentarPersonal.toString(),
4815
4818
  id_uniadm: this.idUnidadAdministradora.toString(),
4816
4819
  periodos: this.periodosNomina.map((function (e) { return e.dataInterface(); })),
4820
+ procesos: this.procesosNomina.map((function (e) { return e.dataInterface(); })),
4817
4821
  };
4818
4822
  }
4819
4823
  getPeriodoNomina() {