sigesp 1.1.84-20251219 → 1.1.86-20260124
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/interfaces/RecursosHumanos.mjs +1 -1
- package/esm2020/lib/core/models/SNO/MConfiguracionSNO.model.mjs +4 -1
- package/esm2020/lib/sigesp.service.mjs +3 -3
- package/fesm2015/sigesp.mjs +5 -2
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +5 -2
- package/fesm2020/sigesp.mjs.map +1 -1
- package/lib/core/interfaces/RecursosHumanos.d.ts +1 -0
- package/lib/core/models/SNO/MConfiguracionSNO.model.d.ts +1 -0
- package/lib/sigesp.service.d.ts +1 -1
- package/package.json +1 -1
package/fesm2015/sigesp.mjs
CHANGED
|
@@ -4434,6 +4434,7 @@ class MConfiguracionSNO extends MBasicModel {
|
|
|
4434
4434
|
this.idConceptoAnticipo = 0;
|
|
4435
4435
|
this.denominacionConceptoAnticipo = '';
|
|
4436
4436
|
this.denominacionTipoDocumentoAnticipo = '';
|
|
4437
|
+
this.contabilizarSinDisponibil = 0;
|
|
4437
4438
|
if (I) {
|
|
4438
4439
|
this.idEnterprise = +I.id_enterprise;
|
|
4439
4440
|
this.idEmpresa = +I.id_empresa;
|
|
@@ -4529,6 +4530,7 @@ class MConfiguracionSNO extends MBasicModel {
|
|
|
4529
4530
|
this.denominacionConceptoAnticipo = I.denconcxp_ant;
|
|
4530
4531
|
this.cuentaContableInteresGenerica = I.sc_cuenta_int_gen;
|
|
4531
4532
|
this.cuentaContableFideicomisoGenerica = I.sc_cuenta_fid_gen;
|
|
4533
|
+
this.contabilizarSinDisponibil = +I.consindis;
|
|
4532
4534
|
}
|
|
4533
4535
|
else {
|
|
4534
4536
|
this.isNew = true;
|
|
@@ -4630,6 +4632,7 @@ class MConfiguracionSNO extends MBasicModel {
|
|
|
4630
4632
|
id_concxp_ant: this.idConceptoAnticipo.toString(),
|
|
4631
4633
|
denconcxp_ant: this.denominacionConceptoAnticipo,
|
|
4632
4634
|
dentipdoc_ant: this.denominacionTipoDocumentoAnticipo,
|
|
4635
|
+
consindis: this.contabilizarSinDisponibil.toString(),
|
|
4633
4636
|
};
|
|
4634
4637
|
}
|
|
4635
4638
|
}
|
|
@@ -8455,8 +8458,8 @@ class SigespService {
|
|
|
8455
8458
|
* @return Json data
|
|
8456
8459
|
* @author Ing. Dimaly Crespo
|
|
8457
8460
|
*/
|
|
8458
|
-
getPerfilSistema(
|
|
8459
|
-
return this.http.get(`${this.URL}/dao/sss/
|
|
8461
|
+
getPerfilSistema(idUsuario) {
|
|
8462
|
+
return this.http.get(`${this.URL}/dao/sss/sistemas_dao.php?usuario=${idUsuario}`, { headers: this.getHttpHeaders() }).pipe(map((res) => {
|
|
8460
8463
|
if (res.data.length > 0) {
|
|
8461
8464
|
res.data = res.data.map(e => new MUsuarioSistema(e));
|
|
8462
8465
|
}
|