sigesp 0.9.33-20230209 → 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.
@@ -6853,7 +6853,7 @@ class SigespService {
6853
6853
  * @return Observable<IResponse>
6854
6854
  * @author Carlos Albornoz
6855
6855
  */
6856
- getBanks() {
6856
+ getBanks(id) {
6857
6857
  return this.http.get(`${this.URL}/dao/scb/banco_dao.php`, { headers: this.getHttpHeaders() }).pipe(retry(3), catchError(this.handlerError), map((res) => {
6858
6858
  if (res.success) {
6859
6859
  res.data = res.data.map(e => new MBank(e));
@@ -6874,7 +6874,7 @@ class SigespService {
6874
6874
  return res;
6875
6875
  }));
6876
6876
  }
6877
- getAllBankAccount() {
6877
+ getAllBankAccount(id) {
6878
6878
  return this.http.get(`${this.URL}/dao/scb/cuenta_banco_dao.php?`, { headers: this.getHttpHeaders() })
6879
6879
  .pipe(map((res) => {
6880
6880
  if (res.success) {