sigesp 0.9.15-20221221 → 0.9.17-20221221
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/package.json +1 -1
package/fesm2015/sigesp.js
CHANGED
|
@@ -6318,7 +6318,7 @@ class SigespService {
|
|
|
6318
6318
|
* @returns
|
|
6319
6319
|
*/
|
|
6320
6320
|
getMonedas(tipo, id) {
|
|
6321
|
-
return this.http.get(`${this.URL}/dao/cfg/moneda_dao.php?tipo=${tipo}&id=${id}`, { headers: this.getHttpHeaders() }).pipe(retry(3), catchError(this.handlerError), map((resp) => resp.map(element => new MMoneda(element))));
|
|
6321
|
+
return this.http.get(`${this.URL}/dao/cfg/moneda_dao.php?tipo=${tipo}&id=${id}`, { headers: this.getHttpHeaders() }).pipe(retry(3), catchError(this.handlerError), map((resp) => resp.data.map(element => new MMoneda(element))));
|
|
6322
6322
|
}
|
|
6323
6323
|
/**
|
|
6324
6324
|
* @Description: Obtiene la tasa de cambio
|
|
@@ -6327,7 +6327,7 @@ class SigespService {
|
|
|
6327
6327
|
* @returns array/null
|
|
6328
6328
|
*/
|
|
6329
6329
|
getCurrencyExchangeRate(tipo = null, id) {
|
|
6330
|
-
return this.http.get(`${this.URL}/dao/cfg/
|
|
6330
|
+
return this.http.get(`${this.URL}/dao/cfg/sigesp_tasa_cambio_dao.php?tipo=${tipo}&id=${id}`, { headers: this.getHttpHeaders() }).pipe(retry(3), catchError(this.handlerError), map((resp) => resp.data.map(element => new MExchangeRate(element))));
|
|
6331
6331
|
}
|
|
6332
6332
|
/**
|
|
6333
6333
|
* @description Abre el dialog de las las cuentas contables (Cuentas Institucionales)
|