sigesp 1.1.31-20241209 → 1.1.33-20241215
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/esm2020/lib/core/models/SNO/MAsignacionCargo.model.mjs +5 -1
- package/esm2020/lib/sigesp.service.mjs +2 -2
- package/fesm2015/sigesp.mjs +5 -1
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +5 -1
- package/fesm2020/sigesp.mjs.map +1 -1
- package/lib/core/models/SNO/MAsignacionCargo.model.d.ts +4 -0
- package/package.json +1 -1
package/fesm2015/sigesp.mjs
CHANGED
|
@@ -5156,6 +5156,10 @@ class MAsignacionCargo extends MBasicModel {
|
|
|
5156
5156
|
this.nominaEliminar = [];
|
|
5157
5157
|
this.detallesOrganigrama = [];
|
|
5158
5158
|
this.organigramaEliminar = [];
|
|
5159
|
+
this.idUsuarioAsignacion = -1;
|
|
5160
|
+
this.idUsuarioCese = -1;
|
|
5161
|
+
this.fechaAsignacion = 0;
|
|
5162
|
+
this.fechaCese = 0;
|
|
5159
5163
|
if (e) {
|
|
5160
5164
|
this.idEnterprise = +e.id_enterprise;
|
|
5161
5165
|
this.idEmpresa = +e.id_empresa;
|
|
@@ -7307,7 +7311,7 @@ class SigespService {
|
|
|
7307
7311
|
* @author Miguel Ramírez
|
|
7308
7312
|
*/
|
|
7309
7313
|
getCuentasPresupuesto(filter) {
|
|
7310
|
-
return this.http.get(`${this.URL}/dao/
|
|
7314
|
+
return this.http.get(`${this.URL}/dao/spg/plan_cuentas_recursos_egresos_dao.php?filter=${filter}`, { headers: this.getHttpHeaders() }).pipe(map((res) => res.data.map(element => new MCuentaPresupuesto(element))));
|
|
7311
7315
|
}
|
|
7312
7316
|
/**
|
|
7313
7317
|
* @description Abre el cátalogo de cuentas de la tabla "spg_cuentas"
|