sigesp 0.9.30-20230208 → 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.
- package/bundles/sigesp.umd.js +9 -0
- 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/core/interfaces/CuentaEgresos.js +1 -1
- package/esm2015/lib/sigesp.service.js +10 -1
- package/fesm2015/sigesp.js +9 -0
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/CuentaEgresos.d.ts +22 -0
- package/lib/sigesp.service.d.ts +2 -1
- package/package.json +1 -1
- package/sigesp.metadata.json +1 -1
package/bundles/sigesp.umd.js
CHANGED
|
@@ -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
|