sigesp 1.1.83-20251218 → 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.
@@ -5410,6 +5410,8 @@ class MNominaSimple extends MBasicModel {
5410
5410
  this.idPlanHorario = +e.id_planhor;
5411
5411
  this.codigoPlanHorario = e.codplanhor;
5412
5412
  this.denominacionPlanHorario = e.denplanhor;
5413
+ e.editable == '1' ? this.editable = true : this.editable = false;
5414
+ e.editable == '1' ? this.estatus = 'CALCULADA' : this.estatus = 'NO CALCULADA';
5413
5415
  }
5414
5416
  else {
5415
5417
  this.isNew = true;
@@ -8416,8 +8418,8 @@ class SigespService {
8416
8418
  * @return Json data
8417
8419
  * @author Ing. Dimaly Crespo
8418
8420
  */
8419
- getPerfilSistema(id_usuario) {
8420
- 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) => {
8421
8423
  if (res.data.length > 0) {
8422
8424
  res.data = res.data.map(e => new MUsuarioSistema(e));
8423
8425
  }
@@ -14836,6 +14838,7 @@ const Campos = [
14836
14838
  { value: "id_ep3", denominacion: "idEp3" },
14837
14839
  { value: "id_ep4", denominacion: "idEp4" },
14838
14840
  { value: "id_ep5", denominacion: "idEp5" },
14841
+ { value: "id_tipopersonal", denominacion: "idTipoPersonal" },
14839
14842
  ];
14840
14843
  const Eventos = [
14841
14844
  { value: "UPDATE" },