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.
- package/esm2020/lib/core/interfaces/Presupuesto.mjs +1 -1
- package/esm2020/lib/core/models/SPG/UnidadAdministradoraCentral.mjs +3 -1
- package/fesm2015/sigesp.mjs +2 -0
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +2 -0
- package/fesm2020/sigesp.mjs.map +1 -1
- package/lib/core/interfaces/Presupuesto.d.ts +1 -0
- package/package.json +1 -1
package/fesm2020/sigesp.mjs
CHANGED
|
@@ -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
|
}
|