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.
@@ -6189,7 +6189,7 @@
6189
6189
  * @return Observable<MCuentaEgresos[]>
6190
6190
  */
6191
6191
  SigespService.prototype.getExpenseAccountsForLevel = function (level, id) {
6192
- return this.http.get(this.URL + "/dao/spg/cuentas_egresos_dao.php\n ?level=" + level + "&id=" + id, { headers: this.getHttpHeaders() })
6192
+ return this.http.get(this.URL + "/dao/spg/cuentas_egresos_dao.php?level=" + level + "&id=" + id, { headers: this.getHttpHeaders() })
6193
6193
  .pipe(operators.map(function (res) { return res.data.map(function (element) { return new MCuentaEgresos(element); }); }));
6194
6194
  };
6195
6195
  /**
@@ -7288,7 +7288,7 @@
7288
7288
  */
7289
7289
  SigespService.prototype.getCurrentCurrency = function (tipo, id) {
7290
7290
  if (tipo === void 0) { tipo = null; }
7291
- return this.http.get(this.URL + "/dao/cfg/moneda_dao.php?tipo=" + tipo + "&id={id}", { headers: this.getHttpHeaders() }).pipe(operators.retry(3), operators.catchError(this.handlerError), operators.map(function (res) {
7291
+ return this.http.get(this.URL + "/dao/cfg/moneda_dao.php?tipo=" + tipo + "&id=" + id, { headers: this.getHttpHeaders() }).pipe(operators.retry(3), operators.catchError(this.handlerError), operators.map(function (res) {
7292
7292
  if (res.success) {
7293
7293
  res.data = new MMonedaConfig(res.data);
7294
7294
  }