sigesp 0.9.73-20231005 → 0.9.74-20231011
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/bundles/sigesp.umd.js +25 -15
- package/bundles/sigesp.umd.js.map +1 -1
- package/bundles/sigesp.umd.min.js +1 -1
- package/bundles/sigesp.umd.min.js.map +1 -1
- package/esm2015/lib/core/interfaces/Constantes.js +17 -16
- package/esm2015/lib/sigesp.service.js +10 -1
- package/fesm2015/sigesp.js +25 -15
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/sigesp.service.d.ts +7 -0
- package/package.json +1 -1
- package/sigesp.metadata.json +1 -1
package/bundles/sigesp.umd.js
CHANGED
|
@@ -562,7 +562,7 @@
|
|
|
562
562
|
{ value: "M", denominacion: 'M' },
|
|
563
563
|
];
|
|
564
564
|
var Sexo2 = [
|
|
565
|
-
{ value: "F", denominacion: '
|
|
565
|
+
{ value: "F", denominacion: 'Feminino' },
|
|
566
566
|
{ value: "M", denominacion: 'Masculino' },
|
|
567
567
|
];
|
|
568
568
|
var NivelAcademico = [
|
|
@@ -599,23 +599,24 @@
|
|
|
599
599
|
{ value: "F", denominacion: 'Fallecido' },
|
|
600
600
|
];
|
|
601
601
|
var EstatusPersonal = [
|
|
602
|
-
{ value: "0", denominacion: 'Pre-Ingreso' },
|
|
603
|
-
{ value: "1", denominacion: 'Activo' },
|
|
604
602
|
{ value: "2", denominacion: 'N/A' },
|
|
605
|
-
{ value: "
|
|
606
|
-
{ value: "
|
|
607
|
-
{ value: "
|
|
608
|
-
{ value: "
|
|
609
|
-
{ value: "
|
|
610
|
-
{ value: "
|
|
603
|
+
{ value: "0", denominacion: 'PRE-INGRESO' },
|
|
604
|
+
{ value: "1", denominacion: 'ACTIVO' },
|
|
605
|
+
{ value: "9", denominacion: 'SUSPENDIDO' },
|
|
606
|
+
{ value: "3", denominacion: 'EGRESADO' },
|
|
607
|
+
{ value: "4", denominacion: 'REMOCIÓN' },
|
|
608
|
+
{ value: "5", denominacion: 'RETIRO' },
|
|
609
|
+
{ value: "6", denominacion: 'DESTITUCIÓN' },
|
|
610
|
+
{ value: "7", denominacion: 'LIQUIDADO' },
|
|
611
|
+
{ value: "8", denominacion: 'REINGRESO' },
|
|
611
612
|
];
|
|
612
613
|
var EstatusPersonalNomina = [
|
|
613
614
|
{ value: "0", denominacion: 'No Asignado' },
|
|
614
|
-
{ value: "1", denominacion: '
|
|
615
|
-
{ value: "2", denominacion: '
|
|
616
|
-
{ value: "3", denominacion: '
|
|
617
|
-
{ value: "4", denominacion: '
|
|
618
|
-
{ value: "5", denominacion: '
|
|
615
|
+
{ value: "1", denominacion: 'ACTIVO' },
|
|
616
|
+
{ value: "2", denominacion: 'VACACIONES' },
|
|
617
|
+
{ value: "3", denominacion: 'EGRESADO' },
|
|
618
|
+
{ value: "4", denominacion: 'SUSPENDIDO' },
|
|
619
|
+
{ value: "5", denominacion: 'FALLECIDO' },
|
|
619
620
|
];
|
|
620
621
|
var Estatus = [
|
|
621
622
|
{ value: "1", denominacion: 'S' },
|
|
@@ -839,7 +840,7 @@
|
|
|
839
840
|
var TipoJubilacion = [
|
|
840
841
|
{ value: '1', denominacion: 'Jubilación Reglamentaria' },
|
|
841
842
|
{ value: '2', denominacion: 'Jubilacion Especial' },
|
|
842
|
-
{ value: '3', denominacion: 'Pensión Invalidez' }
|
|
843
|
+
{ value: '3', denominacion: 'Pensión Invalidez' },
|
|
843
844
|
];
|
|
844
845
|
var camposConstaciaTrabajo = [
|
|
845
846
|
{ denominacion: "AÑO", valor: 'Anio' },
|
|
@@ -7955,6 +7956,15 @@
|
|
|
7955
7956
|
return res;
|
|
7956
7957
|
}));
|
|
7957
7958
|
};
|
|
7959
|
+
/**
|
|
7960
|
+
* @description Valida si la fecha esta dentro del periodo fiscal y el mes esta abierto o cerrado
|
|
7961
|
+
* @return Observable<IResponse>
|
|
7962
|
+
* @author Dimaly Crespo
|
|
7963
|
+
* @author 11-10-2023
|
|
7964
|
+
*/
|
|
7965
|
+
SigespService.prototype.getValidarPeriodo = function (fecha, periodoFiscal) {
|
|
7966
|
+
return this.http.get(this.URL + "/dao/scg/configuracion_contabilidad_dao.php?fecha=" + fecha + "&periodo=" + periodoFiscal, { headers: this.getHttpHeaders() }).pipe(operators.map(function (res) { return res; }));
|
|
7967
|
+
};
|
|
7958
7968
|
SigespService.prototype.userHasRights = function (column) {
|
|
7959
7969
|
return this.http.get(this.URL + "/dao/sss/derechos_usuario_dao.php?idComponent=" + this.currentComponent.id + "&column=" + column, { headers: this.getHttpHeaders() });
|
|
7960
7970
|
};
|