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.
@@ -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(id_usuario) {
8459
- return this.http.get(`${this.URL}/dao/sss/usuarios_sistemas_dao.php?id_usuario=${id_usuario}`, { headers: this.getHttpHeaders() }).pipe(map((res) => {
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
  }