sigesp 1.1.84-20251219 → 1.1.85-20251224

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.
@@ -8455,8 +8455,8 @@ class SigespService {
8455
8455
  * @return Json data
8456
8456
  * @author Ing. Dimaly Crespo
8457
8457
  */
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) => {
8458
+ getPerfilSistema(idUsuario) {
8459
+ return this.http.get(`${this.URL}/dao/sss/sistemas_dao.php?usuario=${idUsuario}`, { headers: this.getHttpHeaders() }).pipe(map((res) => {
8460
8460
  if (res.data.length > 0) {
8461
8461
  res.data = res.data.map(e => new MUsuarioSistema(e));
8462
8462
  }