sigesp 1.1.31-20241209 → 1.1.32-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/fesm2020/sigesp.mjs
CHANGED
|
@@ -5145,6 +5145,10 @@ class MAsignacionCargo extends MBasicModel {
|
|
|
5145
5145
|
this.nominaEliminar = [];
|
|
5146
5146
|
this.detallesOrganigrama = [];
|
|
5147
5147
|
this.organigramaEliminar = [];
|
|
5148
|
+
this.idUsuarioAsignacion = -1;
|
|
5149
|
+
this.idUsuarioCese = -1;
|
|
5150
|
+
this.fechaAsignacion = 0;
|
|
5151
|
+
this.fechaCese = 0;
|
|
5148
5152
|
if (e) {
|
|
5149
5153
|
this.idEnterprise = +e.id_enterprise;
|
|
5150
5154
|
this.idEmpresa = +e.id_empresa;
|
|
@@ -7282,7 +7286,7 @@ class SigespService {
|
|
|
7282
7286
|
* @author Miguel Ramírez
|
|
7283
7287
|
*/
|
|
7284
7288
|
getCuentasPresupuesto(filter) {
|
|
7285
|
-
return this.http.get(`${this.URL}/dao/
|
|
7289
|
+
return this.http.get(`${this.URL}/dao/spg/plan_unico_cuentas_dao.php?filter=${filter}`, { headers: this.getHttpHeaders() }).pipe(map((res) => res.data.map(element => new MCuentaPresupuesto(element))));
|
|
7286
7290
|
}
|
|
7287
7291
|
/**
|
|
7288
7292
|
* @description Abre el cátalogo de cuentas de la tabla "spg_cuentas"
|