sigesp 0.9.29-20230204 → 0.9.31-23230208

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.
@@ -6160,6 +6160,15 @@
6160
6160
  return res;
6161
6161
  }));
6162
6162
  };
6163
+ SigespService.prototype.updateDistributionIncomeAccount2 = function (distribution) {
6164
+ return this.http.put(this.URL + "/dao/spi/cuentas_ingresos_dao.php", distribution, { headers: this.getHttpHeaders() })
6165
+ .pipe(operators.map(function (res) {
6166
+ if (res.success) {
6167
+ res.data = new MCuentaIngresos(res.data);
6168
+ }
6169
+ return res;
6170
+ }));
6171
+ };
6163
6172
  /**
6164
6173
  * @Actualiza la distribución de la cuenta de Ingreso de Estructura
6165
6174
  * @param distribution
@@ -7277,8 +7286,9 @@
7277
7286
  * @author Carlos Albornoz
7278
7287
  * @actualizado: 4-12-20222
7279
7288
  */
7280
- SigespService.prototype.getCurrentCurrency = function () {
7281
- return this.http.get(this.URL + "/dao/cfg/moneda_dao.php?tipo=" + 'actual', { headers: this.getHttpHeaders() }).pipe(operators.retry(3), operators.catchError(this.handlerError), operators.map(function (res) {
7289
+ SigespService.prototype.getCurrentCurrency = function (tipo, id) {
7290
+ if (tipo === void 0) { tipo = null; }
7291
+ 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 (res) {
7282
7292
  if (res.success) {
7283
7293
  res.data = new MMonedaConfig(res.data);
7284
7294
  }