sigesp 0.8.65-220124 → 0.8.69-220214
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 +59 -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/app/app.module.js +1 -1
- package/esm2015/lib/core/interfaces/Nomina.js +1 -1
- package/esm2015/lib/core/interfaces/Seguridad.js +1 -1
- package/esm2015/lib/core/interfaces/Usuario.js +1 -1
- package/esm2015/lib/core/models/SNO/MDefinicionNomina.model.js +6 -7
- package/esm2015/lib/core/models/SNO/MPeriodoNomina.model.js +1 -1
- package/esm2015/lib/core/models/SNO/MPersonalNomina.model.js +16 -6
- package/esm2015/lib/core/models/SSS/userRights.model.js +25 -1
- package/esm2015/lib/core/models/user.model.js +2 -1
- package/esm2015/lib/sigesp.service.js +17 -7
- package/esm2015/lib/validation.service.js +1 -1
- package/fesm2015/sigesp.js +59 -15
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/Nomina.d.ts +2 -0
- package/lib/core/interfaces/Seguridad.d.ts +8 -0
- package/lib/core/interfaces/Usuario.d.ts +1 -0
- package/lib/core/models/SNO/MDefinicionNomina.model.d.ts +3 -2
- package/lib/core/models/SNO/MPersonalNomina.model.d.ts +1 -1
- package/lib/core/models/SSS/userRights.model.d.ts +8 -0
- package/lib/core/models/user.model.d.ts +1 -0
- package/lib/sigesp.service.d.ts +12 -6
- package/package.json +1 -1
- package/sigesp.metadata.json +1 -1
|
@@ -123,6 +123,7 @@ export interface INomina {
|
|
|
123
123
|
nompro: string;
|
|
124
124
|
id_periodoactual: string;
|
|
125
125
|
id_perresnom: string;
|
|
126
|
+
estincidencia: string;
|
|
126
127
|
periodos: IPeriodoNomina[];
|
|
127
128
|
}
|
|
128
129
|
export interface INominaSimple {
|
|
@@ -240,6 +241,7 @@ export interface IPersonalNomina {
|
|
|
240
241
|
horadi2: string;
|
|
241
242
|
estmpppe: string;
|
|
242
243
|
apeper: string;
|
|
244
|
+
racnom?: string;
|
|
243
245
|
}
|
|
244
246
|
export interface IConstanteNomina {
|
|
245
247
|
id_empresa: string;
|
|
@@ -67,6 +67,14 @@ export interface IRights {
|
|
|
67
67
|
enviar__correo_: string | number;
|
|
68
68
|
imprimir: string | number;
|
|
69
69
|
visible: string | number;
|
|
70
|
+
aprobar: string | number;
|
|
71
|
+
revaprobar: string | number;
|
|
72
|
+
anular_sc: string | number;
|
|
73
|
+
revanular_sc: string | number;
|
|
74
|
+
contabilizar: string | number;
|
|
75
|
+
revcontabilizar: string | number;
|
|
76
|
+
anular_c: string | number;
|
|
77
|
+
revanular_c: string | number;
|
|
70
78
|
children: IRights[];
|
|
71
79
|
icono: string;
|
|
72
80
|
id: string | number;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { MPeriodoNomina } from './MPeriodoNomina.model';
|
|
2
|
-
import { INomina } from '../../interfaces/Nomina';
|
|
3
1
|
import { MBasicModel } from '../basic-model.model';
|
|
2
|
+
import { INomina } from '../../interfaces/Nomina';
|
|
3
|
+
import { MPeriodoNomina } from './MPeriodoNomina.model';
|
|
4
4
|
export declare class MDefinicionNomina extends MBasicModel {
|
|
5
5
|
idEmpresa: number;
|
|
6
6
|
idNomina: number;
|
|
@@ -76,6 +76,7 @@ export declare class MDefinicionNomina extends MBasicModel {
|
|
|
76
76
|
denominacionCuentaContable: string;
|
|
77
77
|
idPeriodoNomina: number;
|
|
78
78
|
idPeriodoRestablecerNomina: number;
|
|
79
|
+
estatusIncidencia: number;
|
|
79
80
|
periodosNomina: MPeriodoNomina[];
|
|
80
81
|
constructor(e?: INomina);
|
|
81
82
|
dataInterface(): INomina;
|
|
@@ -78,10 +78,10 @@ export declare class MPersonalNomina extends MBasicModel {
|
|
|
78
78
|
horaAdicional2: number;
|
|
79
79
|
estatusMPPPE: boolean;
|
|
80
80
|
montoSaldoGrado: number;
|
|
81
|
-
salarioPersonal: number;
|
|
82
81
|
apellidoPersonal: string;
|
|
83
82
|
denominacionEstatus: string;
|
|
84
83
|
nombreCompleto: string;
|
|
84
|
+
nominaRac: number;
|
|
85
85
|
constructor(e?: IPersonalNomina);
|
|
86
86
|
dataInterface(): IPersonalNomina;
|
|
87
87
|
}
|
|
@@ -17,6 +17,14 @@ export declare class MRights extends MBasicModel {
|
|
|
17
17
|
sendEmail: boolean;
|
|
18
18
|
print: boolean;
|
|
19
19
|
visible: boolean;
|
|
20
|
+
aprobar: boolean;
|
|
21
|
+
revaprobar: boolean;
|
|
22
|
+
anular_sc: boolean;
|
|
23
|
+
revanular_sc: boolean;
|
|
24
|
+
contabilizar: boolean;
|
|
25
|
+
revcontabilizar: boolean;
|
|
26
|
+
anular_c: boolean;
|
|
27
|
+
revanular_c: boolean;
|
|
20
28
|
children: MRights[];
|
|
21
29
|
icon: string;
|
|
22
30
|
componentName: string;
|
package/lib/sigesp.service.d.ts
CHANGED
|
@@ -818,6 +818,12 @@ export declare class SigespService {
|
|
|
818
818
|
* @return Json data
|
|
819
819
|
* @author Ing. Wilmer Briceno
|
|
820
820
|
*/
|
|
821
|
+
getPerfilNoComponent(id_usuario: number, sistema: string, nameComponent: string): Observable<any>;
|
|
822
|
+
/**
|
|
823
|
+
* @description Obtiene el Json Menu para el usuario definido segun su permisologia del Sistema
|
|
824
|
+
* @return Json data
|
|
825
|
+
* @author Ing. Wilmer Briceno
|
|
826
|
+
*/
|
|
821
827
|
getJsonMenu(id_usuario: number, sistema: string): Observable<any>;
|
|
822
828
|
/**
|
|
823
829
|
* @description Obtiene el Json Menu para el usuario definido segun su permisologia del Sistema
|
|
@@ -846,12 +852,12 @@ export declare class SigespService {
|
|
|
846
852
|
* stringbinario : '1011' y posicion es 2, por tanto se tare 0 y es false que representa opcion consultar.
|
|
847
853
|
* Estructura string binario:
|
|
848
854
|
* Posición :
|
|
849
|
-
* 0. Administrador 6. Descargar
|
|
850
|
-
* 1. insertar 7. Ejecutar
|
|
851
|
-
* 2. Actualizar 8. Enviar
|
|
852
|
-
* 3. consultar 9. Imprimir
|
|
853
|
-
* 4. Eliminar 10. Visible
|
|
854
|
-
* 5. Anular
|
|
855
|
+
* 0. Administrador 6. Descargar 12. Reversar aprobar 18. Reversar anular contabilizado
|
|
856
|
+
* 1. insertar 7. Ejecutar 13. Anular.
|
|
857
|
+
* 2. Actualizar 8. Enviar 14. reversar anular
|
|
858
|
+
* 3. consultar 9. Imprimir 15. contabilizar
|
|
859
|
+
* 4. Eliminar 10. Visible 16. reversar contabilizar
|
|
860
|
+
* 5. Anular 11. Aprobar 17. anular contabilizado
|
|
855
861
|
*
|
|
856
862
|
* @author Ing. Wilmer Briceño
|
|
857
863
|
*/
|