sigesp 0.8.56-220107 → 0.8.60-220113
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 +197 -44
- 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/Lugares.js +1 -1
- package/esm2015/lib/core/interfaces/RecursosHumanos.js +1 -1
- package/esm2015/lib/core/interfaces/Seguridad.js +1 -1
- package/esm2015/lib/core/models/SNO/MPersonal.model.js +19 -1
- package/esm2015/lib/core/models/SSS/log.model.js +29 -0
- package/esm2015/lib/core/models/locations.model.js +93 -23
- package/esm2015/lib/sigesp.service.js +23 -2
- package/esm2015/public-api.js +3 -2
- package/fesm2015/sigesp.js +160 -24
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/Lugares.d.ts +6 -0
- package/lib/core/interfaces/RecursosHumanos.d.ts +6 -0
- package/lib/core/interfaces/Seguridad.d.ts +12 -0
- package/lib/core/models/SNO/MPersonal.model.d.ts +6 -0
- package/lib/core/models/SSS/log.model.d.ts +15 -0
- package/lib/core/models/locations.model.d.ts +18 -5
- package/lib/sigesp.service.d.ts +7 -0
- package/package.json +1 -1
- package/public-api.d.ts +4 -3
- package/sigesp.metadata.json +1 -1
|
@@ -221,6 +221,12 @@ export interface IPersonal {
|
|
|
221
221
|
codsin: string;
|
|
222
222
|
densin: string;
|
|
223
223
|
conapdis: string;
|
|
224
|
+
despai: string;
|
|
225
|
+
desest: string;
|
|
226
|
+
desmun: string;
|
|
227
|
+
despar: string;
|
|
228
|
+
despai_nac: string;
|
|
229
|
+
desest_nac: string;
|
|
224
230
|
}
|
|
225
231
|
export interface ICargosPersonal {
|
|
226
232
|
id_carper: string;
|
|
@@ -85,3 +85,15 @@ export interface IUserPermit {
|
|
|
85
85
|
codusu: string;
|
|
86
86
|
isNew?: string;
|
|
87
87
|
}
|
|
88
|
+
export interface ILog {
|
|
89
|
+
id_usuario: number;
|
|
90
|
+
id_component: number;
|
|
91
|
+
codsis: string;
|
|
92
|
+
evento: string;
|
|
93
|
+
deslog: string;
|
|
94
|
+
equlog: string;
|
|
95
|
+
fecsys?: string;
|
|
96
|
+
feclog?: string;
|
|
97
|
+
id_empresa?: number;
|
|
98
|
+
id_log?: string;
|
|
99
|
+
}
|
|
@@ -93,6 +93,12 @@ export declare class MPersonal extends MBasicModel {
|
|
|
93
93
|
idSindicato: number;
|
|
94
94
|
codigoSindicato: string;
|
|
95
95
|
denominacionSindicato: string;
|
|
96
|
+
nombrePais: string;
|
|
97
|
+
nombreEstado: string;
|
|
98
|
+
nombreMunicipio: string;
|
|
99
|
+
nombreParroquia: string;
|
|
100
|
+
nombrePaisNacimiento: string;
|
|
101
|
+
nombreEstadoNacimiento: string;
|
|
96
102
|
constructor(p?: IPersonal);
|
|
97
103
|
dataInterface(): IPersonal;
|
|
98
104
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { MBasicModel } from '../basic-model.model';
|
|
2
|
+
import { ILog } from '../../interfaces/Seguridad';
|
|
3
|
+
export declare class MLog extends MBasicModel {
|
|
4
|
+
id_usuario: number;
|
|
5
|
+
id_component: number;
|
|
6
|
+
codsis: string;
|
|
7
|
+
evento: string;
|
|
8
|
+
deslog: string;
|
|
9
|
+
equlog: string;
|
|
10
|
+
fecsys: string;
|
|
11
|
+
feclog: string;
|
|
12
|
+
id_empresa: number;
|
|
13
|
+
id_log: number;
|
|
14
|
+
constructor(record?: ILog);
|
|
15
|
+
}
|
|
@@ -1,31 +1,44 @@
|
|
|
1
|
-
import { ICountry, IState, IMunicipality, IParish } from '../interfaces/Lugares';
|
|
2
|
-
|
|
1
|
+
import { ICountry, IState, IMunicipality, IParish, ICity } from '../interfaces/Lugares';
|
|
2
|
+
import { MBasicModel } from './basic-model.model';
|
|
3
|
+
export declare class MCountry extends MBasicModel {
|
|
3
4
|
code: string;
|
|
4
5
|
name: string;
|
|
5
6
|
monofi: number;
|
|
6
7
|
monsec: number;
|
|
7
8
|
constructor(country: ICountry);
|
|
9
|
+
dataInterface(): ICountry;
|
|
8
10
|
}
|
|
9
|
-
export declare class MState {
|
|
11
|
+
export declare class MState extends MBasicModel {
|
|
10
12
|
code: string;
|
|
11
13
|
countryCode: string;
|
|
12
14
|
name: string;
|
|
13
15
|
capital: string;
|
|
14
16
|
constructor(state: IState);
|
|
17
|
+
dataInterface(): IState;
|
|
15
18
|
}
|
|
16
|
-
export declare class MMunicipality {
|
|
19
|
+
export declare class MMunicipality extends MBasicModel {
|
|
17
20
|
code: string;
|
|
18
21
|
countryCode: string;
|
|
19
22
|
stateCode: string;
|
|
20
23
|
name: string;
|
|
21
24
|
capital: string;
|
|
22
25
|
constructor(mun: IMunicipality);
|
|
26
|
+
dataInterface(): IMunicipality;
|
|
23
27
|
}
|
|
24
|
-
export declare class MParish {
|
|
28
|
+
export declare class MParish extends MBasicModel {
|
|
25
29
|
code: string;
|
|
26
30
|
countryCode: string;
|
|
27
31
|
stateCode: string;
|
|
28
32
|
municipalityCode: string;
|
|
29
33
|
name: string;
|
|
30
34
|
constructor(parish: IParish);
|
|
35
|
+
dataInterface(): IParish;
|
|
36
|
+
}
|
|
37
|
+
export declare class MCity extends MBasicModel {
|
|
38
|
+
code: string;
|
|
39
|
+
countryCode: string;
|
|
40
|
+
stateCode: string;
|
|
41
|
+
name: string;
|
|
42
|
+
constructor(city: ICity);
|
|
43
|
+
dataInterface(): ICity;
|
|
31
44
|
}
|
package/lib/sigesp.service.d.ts
CHANGED
|
@@ -28,6 +28,7 @@ import { MCuentaIngresos } from './core/models/IncomeAccount';
|
|
|
28
28
|
import { MCountry, MState, MMunicipality, MParish } from './core/models/locations.model';
|
|
29
29
|
import { IResponse } from './core/interfaces/Response';
|
|
30
30
|
import { MComponent } from './core/models/SSS/component.model';
|
|
31
|
+
import { MLog } from './core/models/SSS/log.model';
|
|
31
32
|
export declare class SigespService {
|
|
32
33
|
private http;
|
|
33
34
|
private dialog;
|
|
@@ -786,6 +787,12 @@ export declare class SigespService {
|
|
|
786
787
|
* @author Ing. Wilmer Briceno
|
|
787
788
|
*/
|
|
788
789
|
getJsonMenu(id_usuario: number, sistema: string): Observable<any>;
|
|
790
|
+
/**
|
|
791
|
+
* @description Obtiene el Json Menu para el usuario definido segun su permisologia del Sistema
|
|
792
|
+
* @return Json data
|
|
793
|
+
* @author Ing. Wilmer Briceno
|
|
794
|
+
*/
|
|
795
|
+
log(body: MLog): Observable<any>;
|
|
789
796
|
}
|
|
790
797
|
interface filtroCuentasPresupuesto {
|
|
791
798
|
tipo?: 'E' | 'R';
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ export { MFuenteFinanciamiento } from './lib/core/models/fuenteFinanciamiento.mo
|
|
|
17
17
|
export { MCuentaEgresos } from './lib/core/models/expensiveAccount.model';
|
|
18
18
|
export { MComprobantePresupuestarioIngresos, MComprobantePresupuestarioEgresos } from './lib/core/models/comprobantePresupuestario.model';
|
|
19
19
|
export { MEstructuraPresupuestariaOne, MEstructuraPresupuestariaTwo, MEstructuraPresupuestariaFive, MEstructuraPresupuestariaThree, MEstructuraPresupuestariaFour, MEstructuraPresupuestariaFiveComplete, MAllStructure } from './lib/core/models/estructuraPresupuestaria.model';
|
|
20
|
-
export { MCountry, MMunicipality, MParish, MState } from './lib/core/models/locations.model';
|
|
20
|
+
export { MCountry, MMunicipality, MParish, MState, MCity } from './lib/core/models/locations.model';
|
|
21
21
|
export { MClasification } from './lib/core/models/clasification.model';
|
|
22
22
|
export { MDocument } from './lib/core/models/document.model';
|
|
23
23
|
export { MOrganizationType } from './lib/core/models/organizationType.model';
|
|
@@ -41,6 +41,7 @@ export { MSistema } from './lib/core/models/sistema';
|
|
|
41
41
|
export { MComponent } from './lib/core/models/SSS/component.model';
|
|
42
42
|
export { MRights } from './lib/core/models/SSS/userRights.model';
|
|
43
43
|
export { MUserPermit } from './lib/core/models/SSS/userPermit.model';
|
|
44
|
+
export { MLog } from './lib/core/models/SSS/log.model';
|
|
44
45
|
export { MAdministrativeUnit } from './lib/core/models/SPG/administrativeUnit.model';
|
|
45
46
|
export { MServiceCharge } from './lib/core/models/SOC/serviceCharge.model';
|
|
46
47
|
export { MBasicModel } from './lib/core/models/basic-model.model';
|
|
@@ -108,14 +109,14 @@ export { IEstructuraPresupuestariaOne, IEstructuraPresupuestariaTwo, IEstructura
|
|
|
108
109
|
export { ISpecialty } from './lib/core/interfaces/Especialidad';
|
|
109
110
|
export { IDocument } from './lib/core/interfaces/Documento';
|
|
110
111
|
export { IClasification } from './lib/core/interfaces/Clasificacion';
|
|
111
|
-
export { ICountry, IMunicipality, IParish, IState } from './lib/core/interfaces/Lugares';
|
|
112
|
+
export { ICountry, IMunicipality, IParish, IState, ICity } from './lib/core/interfaces/Lugares';
|
|
112
113
|
export { IBank, IBankAccountType, ISigecofBank, IAgencia, ICuentaBanco, ICartaOrden, IMovimientoBanco, IConfigBanco, IConceptoMovimiento, IControlDocumento, IConciliacion, IChequera, ICuentasSpSc, IDetalle, IDivisas, IMovimiento, ICatalogoIntegracion, IDetalleConciliacion, IDetalleMovimiento, IDetalleSpgSpi, IDetallesContable, IIntegracion, IMovimientoBancoConciliar, ISelect2, ITipoFondoAvance, ITrasferencia, IVoucherMedidas } from './lib/core/interfaces/Banco';
|
|
113
114
|
export { IConfigurationRPC } from './lib/core/interfaces/ConfiguracionRPC';
|
|
114
115
|
export { IServiceType, IService, IClause, IConfigSOC, IClauseModality, IServiceCharges } from './lib/core/interfaces/Servicios';
|
|
115
116
|
export { IDeductionType, ICargo, IDeduction } from './lib/core/interfaces/Tributos';
|
|
116
117
|
export { customPaginator } from './lib/shared/material/customPaginator';
|
|
117
118
|
export { ICuentaIngresos } from './lib/core/interfaces/CuentaIngreso';
|
|
118
|
-
export { IConfigSSS, IUserDetail, IGroup, IComponent, IRights, IUserPermit } from './lib/core/interfaces/Seguridad';
|
|
119
|
+
export { IConfigSSS, IUserDetail, IGroup, IComponent, IRights, IUserPermit, ILog } from './lib/core/interfaces/Seguridad';
|
|
119
120
|
export { ISistema } from './lib/core/interfaces/Sistema';
|
|
120
121
|
export { IUnitAdministrative } from './lib/core/interfaces/Presupuesto';
|
|
121
122
|
export { IServiceCharge, IConceptosCXP, ITipoDocumentoCXP } from './lib/core/interfaces/CuentasPorPagar';
|