sigesp 0.9.32-20230208 → 0.9.33-20230209

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.
@@ -5697,8 +5697,7 @@ class SigespService {
5697
5697
  * @return Observable<MCuentaEgresos[]>
5698
5698
  */
5699
5699
  getExpenseAccountsForLevel(level, id) {
5700
- return this.http.get(`${this.URL}/dao/spg/cuentas_egresos_dao.php
5701
- ?level=${level}&id=${id}`, { headers: this.getHttpHeaders() })
5700
+ return this.http.get(`${this.URL}/dao/spg/cuentas_egresos_dao.php?level=${level}&id=${id}`, { headers: this.getHttpHeaders() })
5702
5701
  .pipe(map((res) => res.data.map(element => new MCuentaEgresos(element))));
5703
5702
  }
5704
5703
  /**