sigesp 0.9.99-20240222 → 0.9.100-20240222

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.
@@ -4052,7 +4052,6 @@
4052
4052
  _this.cuentaPresupuestaria = dt.cuentapresupuestaria;
4053
4053
  _this.denominacion = dt.denominacion;
4054
4054
  _this.estructura = dt.estructura;
4055
- _this.fuentes = dt.fuentes.map(function (e) { return new MFuenteFinanciamiento(e); });
4056
4055
  _this.idEp1 = parseInt(dt.id_ep1);
4057
4056
  _this.idEp2 = parseInt(dt.id_ep2);
4058
4057
  _this.idEp3 = parseInt(dt.id_ep3);
@@ -4070,6 +4069,9 @@
4070
4069
  _this.denominacion3 = dt.status;
4071
4070
  _this.idDtUni = parseInt(dt.id_dt_uniadm);
4072
4071
  _this.idUnidadAdministrativa = parseInt(dt.id_uniadm);
4072
+ if (dt.fuentes) {
4073
+ _this.fuentes = dt.fuentes.map(function (e) { return new MFuenteFinanciamiento(e); });
4074
+ }
4073
4075
  }
4074
4076
  return _this;
4075
4077
  }