sigesp 0.9.56-20230904 → 0.9.57-20230905

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.
@@ -678,11 +678,12 @@ class MUsuario extends MBasicModel {
678
678
  this.procede = user.procede;
679
679
  this.codsis = user.codsis;
680
680
  this.foto = user.foto;
681
- this.id = parseInt(user.id_usuario);
681
+ this.id = +user.id_usuario;
682
682
  this.interface = user;
683
- this.nomina = parseInt(user.nomina);
684
- this.periodo = parseInt(user.periodo);
683
+ this.nomina = +user.nomina;
684
+ this.periodo = +user.periodo;
685
685
  this.carpeta = user.carpeta;
686
+ this.sistema = user.sistema;
686
687
  }
687
688
  else {
688
689
  this.isNew = true;