sigesp 0.9.48-20230717 → 0.9.49-20230719
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 +1 -1
- 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 +2 -2
- package/fesm2015/sigesp.js +1 -1
- package/fesm2015/sigesp.js.map +1 -1
- package/package.json +1 -1
package/fesm2015/sigesp.js
CHANGED
|
@@ -6886,7 +6886,7 @@ class SigespService {
|
|
|
6886
6886
|
* @account ={'S','N'} para traer las cuentas bancarias del proveedor por defecto esta en N
|
|
6887
6887
|
* @modificado 17-07-2023
|
|
6888
6888
|
*/
|
|
6889
|
-
getProvidersAndBeneficiaries(type =
|
|
6889
|
+
getProvidersAndBeneficiaries(type = 'default', destination = null, account = 'N') {
|
|
6890
6890
|
return this.http.get(`${this.URL}/dao/rpc/proveedor_beneficiario_dao.php${type ? `?provider_type=${type}` : ''}&destination=${destination}&account=${account}`, { headers: this.getHttpHeaders() }).pipe(retry(3), catchError(this.handlerError), map((res) => {
|
|
6891
6891
|
if (res.success) {
|
|
6892
6892
|
res.data = res.data.map(e => new MProviderBeneficiary(e));
|