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.
- package/bundles/sigesp.umd.js +2 -2
- package/bundles/sigesp.umd.js.map +1 -1
- package/bundles/sigesp.umd.min.js +1 -1
- package/bundles/sigesp.umd.min.js.map +1 -1
- package/esm2015/lib/sigesp.service.js +3 -3
- package/fesm2015/sigesp.js +2 -2
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/sigesp.service.d.ts +2 -2
- package/package.json +1 -1
package/bundles/sigesp.umd.js
CHANGED
|
@@ -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) {
|