sigesp 0.9.31-23230208 → 0.9.32-20230208

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.
@@ -6684,7 +6684,7 @@ class SigespService {
6684
6684
  * @actualizado: 4-12-20222
6685
6685
  */
6686
6686
  getCurrentCurrency(tipo = null, id) {
6687
- 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((res) => {
6687
+ 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((res) => {
6688
6688
  if (res.success) {
6689
6689
  res.data = new MMonedaConfig(res.data);
6690
6690
  }