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.
@@ -5421,6 +5421,8 @@ class MNominaSimple extends MBasicModel {
5421
5421
  this.idPlanHorario = +e.id_planhor;
5422
5422
  this.codigoPlanHorario = e.codplanhor;
5423
5423
  this.denominacionPlanHorario = e.denplanhor;
5424
+ e.editable == '1' ? this.editable = true : this.editable = false;
5425
+ e.editable == '1' ? this.estatus = 'CALCULADA' : this.estatus = 'NO CALCULADA';
5424
5426
  }
5425
5427
  else {
5426
5428
  this.isNew = true;
@@ -8453,8 +8455,8 @@ class SigespService {
8453
8455
  * @return Json data
8454
8456
  * @author Ing. Dimaly Crespo
8455
8457
  */
8456
- getPerfilSistema(id_usuario) {
8457
- 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) => {
8458
8460
  if (res.data.length > 0) {
8459
8461
  res.data = res.data.map(e => new MUsuarioSistema(e));
8460
8462
  }
@@ -14873,6 +14875,7 @@ const Campos = [
14873
14875
  { value: "id_ep3", denominacion: "idEp3" },
14874
14876
  { value: "id_ep4", denominacion: "idEp4" },
14875
14877
  { value: "id_ep5", denominacion: "idEp5" },
14878
+ { value: "id_tipopersonal", denominacion: "idTipoPersonal" },
14876
14879
  ];
14877
14880
  const Eventos = [
14878
14881
  { value: "UPDATE" },