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.
@@ -8418,8 +8418,8 @@ class SigespService {
8418
8418
  * @return Json data
8419
8419
  * @author Ing. Dimaly Crespo
8420
8420
  */
8421
- getPerfilSistema(id_usuario) {
8422
- return this.http.get(`${this.URL}/dao/sss/usuarios_sistemas_dao.php?id_usuario=${id_usuario}`, { headers: this.getHttpHeaders() }).pipe(map((res) => {
8421
+ getPerfilSistema(idUsuario) {
8422
+ return this.http.get(`${this.URL}/dao/sss/sistemas_dao.php?usuario=${idUsuario}`, { headers: this.getHttpHeaders() }).pipe(map((res) => {
8423
8423
  if (res.data.length > 0) {
8424
8424
  res.data = res.data.map(e => new MUsuarioSistema(e));
8425
8425
  }