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.
- package/esm2020/lib/core/interfaces/Auditoria.mjs +2 -1
- package/esm2020/lib/core/interfaces/Nomina.mjs +1 -1
- package/esm2020/lib/core/models/SNO/MNominaSimple.model.mjs +3 -1
- package/esm2020/lib/sigesp.service.mjs +3 -3
- package/fesm2015/sigesp.mjs +5 -2
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +5 -2
- package/fesm2020/sigesp.mjs.map +1 -1
- package/lib/core/interfaces/Nomina.d.ts +1 -0
- package/lib/sigesp.service.d.ts +1 -1
- package/package.json +1 -1
package/fesm2015/sigesp.mjs
CHANGED
|
@@ -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(
|
|
8457
|
-
return this.http.get(`${this.URL}/dao/sss/
|
|
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" },
|