sigesp 1.1.14-20241014 → 1.1.15-20241017

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.
@@ -9100,6 +9100,7 @@ class MUnidadAdministradoraCentral extends MBasicModel {
9100
9100
  this.denominacionUnidadCentral = e.denuac;
9101
9101
  this.tipoUnidad = e.tipuac == '1';
9102
9102
  this.responsableUnidad = e.resuac;
9103
+ this.periodoFiscal = +e.perfiscal;
9103
9104
  if (e.unidad_organizativa) {
9104
9105
  this.unidadOrganizativa = e.unidad_organizativa.map(e => new MAdministrativeUnit(e));
9105
9106
  }
@@ -9117,6 +9118,7 @@ class MUnidadAdministradoraCentral extends MBasicModel {
9117
9118
  denuac: this.denominacionUnidadCentral,
9118
9119
  resuac: this.responsableUnidad,
9119
9120
  tipuac: this.tipoUnidad ? '1' : '0',
9121
+ perfiscal: this.periodoFiscal.toString(),
9120
9122
  unidad_organizativa: this.unidadOrganizativa.map(function (e) { return e.dataInterface(); }),
9121
9123
  };
9122
9124
  }