sigesp 1.1.26-20241119 → 1.1.28-20241208

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.
@@ -495,6 +495,7 @@ export interface ICodigoUnicoRac {
495
495
  }
496
496
  export interface ICargoOrganigrama {
497
497
  id_empresa: string;
498
+ id_enterprise: string;
498
499
  id_carper: string;
499
500
  id_organigrama: string;
500
501
  id_personal: string;
@@ -509,10 +510,11 @@ export interface ICargoOrganigrama {
509
510
  denominacion?: string;
510
511
  coduniadm?: string;
511
512
  denuniadm?: string;
512
- codigo_estructura?: string;
513
+ estructura?: string;
513
514
  }
514
515
  export interface ICargoNomina {
515
516
  id_empresa: string;
517
+ id_enterprise: string;
516
518
  id_carper: string;
517
519
  id_nomina: string;
518
520
  id_dt_carnom: string;
@@ -800,7 +800,6 @@ export interface IGrados {
800
800
  aniodes: string;
801
801
  aniohas: string;
802
802
  id_dt_grado: string;
803
- detalles_prima: IPrimaGrados[];
804
803
  }
805
804
  export interface IPrimaGrados {
806
805
  id_enterprise: string;
@@ -1081,12 +1080,15 @@ export interface IEstructuraOrganizativa {
1081
1080
  nivel: string;
1082
1081
  nivpad: string;
1083
1082
  codcencos: string;
1083
+ dencencos: string;
1084
1084
  id_ep1: string;
1085
1085
  id_ep2: string;
1086
1086
  id_ep3: string;
1087
1087
  id_ep4: string;
1088
1088
  id_ep5: string;
1089
+ estructura: string;
1089
1090
  codpadre: string;
1091
+ denpadre: string;
1090
1092
  codpai: string;
1091
1093
  despai: string;
1092
1094
  codest: string;
@@ -39,6 +39,7 @@ export declare class MAsignacionCargo extends MBasicModel {
39
39
  }
40
40
  export declare class MCargoEstructuraOrganizativa extends MBasicModel {
41
41
  idEmpresa: number;
42
+ idEnterprise: number;
42
43
  idCargoPersonal: number;
43
44
  codigoCargo: string;
44
45
  descripcionCargo: string;
@@ -60,6 +61,7 @@ export declare class MCargoEstructuraOrganizativa extends MBasicModel {
60
61
  export declare class MCargosNominas extends MBasicModel {
61
62
  idEmpresa: number;
62
63
  idNomina: number;
64
+ idEnterprise: number;
63
65
  idCargo: number;
64
66
  codigoNomina: string;
65
67
  denominacionNomina: string;
@@ -9,12 +9,14 @@ export declare class MEstructuraOrganizativa extends MBasicModel {
9
9
  nivel: number;
10
10
  nivelPadre: number;
11
11
  codigoCentroCosto: string;
12
+ denominacionCentroCosto: string;
12
13
  idEp1: number;
13
14
  idEp2: number;
14
15
  idEp3: number;
15
16
  idEp4: number;
16
17
  idEp5: number;
17
18
  codigoPadre: string;
19
+ denominacionPadre: string;
18
20
  codigoPais: string;
19
21
  nombrePais: string;
20
22
  codigoEstado: string;
@@ -38,6 +40,7 @@ export declare class MEstructuraOrganizativa extends MBasicModel {
38
40
  codigoUnidadAdministrativa: string;
39
41
  denominacionUnidadAdministraiva: string;
40
42
  idCentroCosto: number;
43
+ estructura: string;
41
44
  constructor(e?: IEstructuraOrganizativa);
42
45
  dataInterface(): IEstructuraOrganizativa;
43
46
  }
@@ -31,7 +31,9 @@ export declare class MConfigurationSPG {
31
31
  idEP5: number;
32
32
  denominacionUnidadAdministrativa: string;
33
33
  codigoUnidadAdministrativa: string;
34
+ denominacionFuenteFinanciaminto: string;
34
35
  codigoFuenteFinanciaminto: string;
36
+ denominacionCentroCosto: string;
35
37
  codigoCentroCosto: string;
36
38
  estructuraPresupuestaria: string;
37
39
  editable: boolean;
@@ -128,14 +128,14 @@ export declare class SigespService {
128
128
  * @return Observable<MConfiguracionSNO[]>
129
129
  * @date 27-07-2021
130
130
  */
131
- getConfigurationSNO(): Observable<IResponse>;
131
+ getConfigurationSNO(idEnterprise: number): Observable<IResponse>;
132
132
  dateToString(date: Date): string;
133
133
  /**
134
134
  * @description Obtiene las configuraciones de Seguridad
135
135
  * @return Observable<IResponse>
136
136
  * @author Carlos Albornoz
137
137
  */
138
- getConfigSSS(): Observable<IResponse>;
138
+ getConfigSSS(idEnterprise?: number): Observable<IResponse>;
139
139
  getComponents(systemCode: string, permit: boolean): Observable<IResponse>;
140
140
  /**
141
141
  * @description Obtiene las fuentes de financiamiento
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigesp",
3
- "version": "1.1.26-20241119",
3
+ "version": "1.1.28-20241208",
4
4
  "dependencies": {
5
5
  "tslib": "^2.6.2"
6
6
  },
@@ -28,4 +28,4 @@
28
28
  }
29
29
  },
30
30
  "sideEffects": false
31
- }
31
+ }