sigesp 0.9.32-20230208 → 0.9.34-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
  /**
@@ -7471,7 +7471,7 @@
7471
7471
  * @return Observable<IResponse>
7472
7472
  * @author Carlos Albornoz
7473
7473
  */
7474
- SigespService.prototype.getBanks = function () {
7474
+ SigespService.prototype.getBanks = function (id) {
7475
7475
  return this.http.get(this.URL + "/dao/scb/banco_dao.php", { headers: this.getHttpHeaders() }).pipe(operators.retry(3), operators.catchError(this.handlerError), operators.map(function (res) {
7476
7476
  if (res.success) {
7477
7477
  res.data = res.data.map(function (e) { return new MBank(e); });
@@ -7492,7 +7492,7 @@
7492
7492
  return res;
7493
7493
  }));
7494
7494
  };
7495
- SigespService.prototype.getAllBankAccount = function () {
7495
+ SigespService.prototype.getAllBankAccount = function (id) {
7496
7496
  return this.http.get(this.URL + "/dao/scb/cuenta_banco_dao.php?", { headers: this.getHttpHeaders() })
7497
7497
  .pipe(operators.map(function (res) {
7498
7498
  if (res.success) {