sigesp 1.1.57-20250722 → 1.1.58-20250723
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/administrativeUnit.model.mjs +4 -1
- package/fesm2015/sigesp.mjs +3 -0
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +3 -0
- package/fesm2020/sigesp.mjs.map +1 -1
- package/lib/core/interfaces/Presupuesto.d.ts +1 -0
- package/lib/core/models/SPG/administrativeUnit.model.d.ts +1 -0
- package/package.json +1 -1
package/fesm2020/sigesp.mjs
CHANGED
|
@@ -3882,6 +3882,7 @@ class MEstructuras extends MBasicModel {
|
|
|
3882
3882
|
this.idEnterprise = 0;
|
|
3883
3883
|
this.periodoFiscal = 0;
|
|
3884
3884
|
this.idEmpresa = 0;
|
|
3885
|
+
this.orden = 0;
|
|
3885
3886
|
this.fuentes = [];
|
|
3886
3887
|
if (dt) {
|
|
3887
3888
|
this.cuentaContable = dt.sc_cuenta;
|
|
@@ -3911,6 +3912,7 @@ class MEstructuras extends MBasicModel {
|
|
|
3911
3912
|
this.estatusClasificacion = dt.estcla;
|
|
3912
3913
|
this.denominacionEstatusClasificacion = dt.denestcla;
|
|
3913
3914
|
this.idUnidadAdministrativa = parseInt(dt.id_uniadm);
|
|
3915
|
+
this.orden = +dt.orden;
|
|
3914
3916
|
if (dt.fuentes) {
|
|
3915
3917
|
this.fuentes = dt.fuentes.map(e => new MFuenteFinanciamiento(e));
|
|
3916
3918
|
}
|
|
@@ -3930,6 +3932,7 @@ class MEstructuras extends MBasicModel {
|
|
|
3930
3932
|
id_uniadm: this.idUnidadAdministrativa.toString(),
|
|
3931
3933
|
estcla: this.estatusClasificacion,
|
|
3932
3934
|
estructura: this.estructura,
|
|
3935
|
+
orden: this.orden.toString(),
|
|
3933
3936
|
};
|
|
3934
3937
|
}
|
|
3935
3938
|
}
|