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.
- package/bundles/sigesp.umd.js +4 -3
- package/bundles/sigesp.umd.js.map +1 -1
- package/bundles/sigesp.umd.min.js +1 -1
- package/bundles/sigesp.umd.min.js.map +1 -1
- package/esm2015/lib/core/interfaces/Usuario.js +1 -1
- package/esm2015/lib/core/models/SSS/user.model.js +5 -4
- package/esm2015/lib/sigesp.service.js +1 -1
- package/fesm2015/sigesp.js +4 -3
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/Usuario.d.ts +1 -0
- package/lib/core/models/SSS/user.model.d.ts +1 -0
- package/package.json +1 -1
package/fesm2015/sigesp.js
CHANGED
|
@@ -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 =
|
|
681
|
+
this.id = +user.id_usuario;
|
|
682
682
|
this.interface = user;
|
|
683
|
-
this.nomina =
|
|
684
|
-
this.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;
|