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/bundles/sigesp.umd.js
CHANGED
|
@@ -6870,7 +6870,7 @@
|
|
|
6870
6870
|
* @returns
|
|
6871
6871
|
*/
|
|
6872
6872
|
SigespService.prototype.getMonedas = function (tipo, id) {
|
|
6873
|
-
return this.http.get(this.URL + "/dao/cfg/moneda_dao.php?tipo=" + tipo + "&id=" + id, { headers: this.getHttpHeaders() }).pipe(operators.retry(3), operators.catchError(this.handlerError), operators.map(function (resp) { return resp.map(function (element) { return new MMoneda(element); }); }));
|
|
6873
|
+
return this.http.get(this.URL + "/dao/cfg/moneda_dao.php?tipo=" + tipo + "&id=" + id, { headers: this.getHttpHeaders() }).pipe(operators.retry(3), operators.catchError(this.handlerError), operators.map(function (resp) { return resp.data.map(function (element) { return new MMoneda(element); }); }));
|
|
6874
6874
|
};
|
|
6875
6875
|
/**
|
|
6876
6876
|
* @Description: Obtiene la tasa de cambio
|
|
@@ -6880,7 +6880,7 @@
|
|
|
6880
6880
|
*/
|
|
6881
6881
|
SigespService.prototype.getCurrencyExchangeRate = function (tipo, id) {
|
|
6882
6882
|
if (tipo === void 0) { tipo = null; }
|
|
6883
|
-
return this.http.get(this.URL + "/dao/cfg/
|
|
6883
|
+
return this.http.get(this.URL + "/dao/cfg/sigesp_tasa_cambio_dao.php?tipo=" + tipo + "&id=" + id, { headers: this.getHttpHeaders() }).pipe(operators.retry(3), operators.catchError(this.handlerError), operators.map(function (resp) { return resp.data.map(function (element) { return new MExchangeRate(element); }); }));
|
|
6884
6884
|
};
|
|
6885
6885
|
/**
|
|
6886
6886
|
* @description Abre el dialog de las las cuentas contables (Cuentas Institucionales)
|