sigesp 0.8.64-220121 → 0.8.68-220203

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.
@@ -240,6 +240,7 @@ export interface IPersonalNomina {
240
240
  horadi2: string;
241
241
  estmpppe: string;
242
242
  apeper: string;
243
+ racnom?: string;
243
244
  }
244
245
  export interface IConstanteNomina {
245
246
  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;
@@ -13,6 +13,7 @@ export interface IUsuario {
13
13
  procede?: string;
14
14
  codsis?: string;
15
15
  nomina?: string;
16
+ periodo?: string;
16
17
  }
17
18
  export interface IConexionDB {
18
19
  baseDeDatos: string;
@@ -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;
@@ -10,6 +10,7 @@ export declare class MUsuario {
10
10
  procede?: string;
11
11
  codsis?: string;
12
12
  nomina?: number;
13
+ periodo?: number;
13
14
  private interface;
14
15
  constructor(user: IUsuario);
15
16
  getInterface(): IUsuario;
@@ -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
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigesp",
3
- "version": "0.8.64-220121",
3
+ "version": "0.8.68-220203",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },