sigesp 0.9.31-23230208 → 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
  /**
@@ -6684,7 +6683,7 @@ class SigespService {
6684
6683
  * @actualizado: 4-12-20222
6685
6684
  */
6686
6685
  getCurrentCurrency(tipo = null, id) {
6687
- return this.http.get(`${this.URL}/dao/cfg/moneda_dao.php?tipo=${tipo}&id={id}`, { headers: this.getHttpHeaders() }).pipe(retry(3), catchError(this.handlerError), map((res) => {
6686
+ return this.http.get(`${this.URL}/dao/cfg/moneda_dao.php?tipo=${tipo}&id=${id}`, { headers: this.getHttpHeaders() }).pipe(retry(3), catchError(this.handlerError), map((res) => {
6688
6687
  if (res.success) {
6689
6688
  res.data = new MMonedaConfig(res.data);
6690
6689
  }