sigesp 0.8.57-220110 → 0.8.61-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 +63 -24
- 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/RecursosHumanos.js +1 -1
- package/esm2015/lib/core/interfaces/Seguridad.js +1 -1
- package/esm2015/lib/core/models/SNO/MPersonal.model.js +7 -1
- package/esm2015/lib/core/models/SSS/log.model.js +29 -0
- package/esm2015/lib/sigesp.service.js +26 -26
- package/esm2015/public-api.js +2 -1
- package/fesm2015/sigesp.js +59 -25
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/RecursosHumanos.d.ts +2 -0
- package/lib/core/interfaces/Seguridad.d.ts +12 -0
- package/lib/core/models/SNO/MPersonal.model.d.ts +2 -0
- package/lib/core/models/SSS/log.model.d.ts +15 -0
- package/lib/sigesp.service.d.ts +15 -19
- package/package.json +1 -1
- package/public-api.d.ts +2 -1
- package/sigesp.metadata.json +1 -1
|
@@ -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
|
+
}
|
|
@@ -97,6 +97,8 @@ export declare class MPersonal extends MBasicModel {
|
|
|
97
97
|
nombreEstado: string;
|
|
98
98
|
nombreMunicipio: string;
|
|
99
99
|
nombreParroquia: string;
|
|
100
|
+
nombrePaisNacimiento: string;
|
|
101
|
+
nombreEstadoNacimiento: string;
|
|
100
102
|
constructor(p?: IPersonal);
|
|
101
103
|
dataInterface(): IPersonal;
|
|
102
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
|
+
}
|
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;
|
|
@@ -490,36 +491,25 @@ export declare class SigespService {
|
|
|
490
491
|
* @return Observable<MCountry>
|
|
491
492
|
* @author Carlos Albornoz
|
|
492
493
|
*/
|
|
493
|
-
getCountries(
|
|
494
|
+
getCountries(): Observable<MCountry[]>;
|
|
494
495
|
/**
|
|
495
496
|
* @description Obtiene los estados
|
|
496
497
|
* @return Observable<MState>
|
|
497
498
|
* @author Carlos Albornoz
|
|
498
|
-
* @modificado 10-01-2022
|
|
499
499
|
*/
|
|
500
|
-
getStates(
|
|
500
|
+
getStates(): Observable<MState[]>;
|
|
501
501
|
/**
|
|
502
502
|
* @description Obtiene los municipios
|
|
503
503
|
* @return Observable<MMunicipality>
|
|
504
504
|
* @author Carlos Albornoz
|
|
505
|
-
* @modificado 10-01-2022
|
|
506
505
|
*/
|
|
507
|
-
getMunicipalities(
|
|
506
|
+
getMunicipalities(): Observable<MMunicipality[]>;
|
|
508
507
|
/**
|
|
509
508
|
* @description Obtiene las parroquias
|
|
510
509
|
* @return Observable<MParish>
|
|
511
510
|
* @author Carlos Albornoz
|
|
512
|
-
* @modificado 10-01-2022
|
|
513
|
-
*
|
|
514
511
|
*/
|
|
515
|
-
getParishes(
|
|
516
|
-
/**
|
|
517
|
-
* @description Obtiene las parroquias
|
|
518
|
-
* @return Observable<MParish>
|
|
519
|
-
* @author Carlos Albornoz
|
|
520
|
-
* @modificado 10-01-2022
|
|
521
|
-
*/
|
|
522
|
-
getCitys(codigo?: string): Observable<MParish[]>;
|
|
512
|
+
getParishes(): Observable<MParish[]>;
|
|
523
513
|
/**
|
|
524
514
|
* @description Obtiene los sistemas activas
|
|
525
515
|
* @return Observable<MSistema>
|
|
@@ -792,11 +782,17 @@ export declare class SigespService {
|
|
|
792
782
|
*/
|
|
793
783
|
getPersonalNomina(dato?: any): Observable<any>;
|
|
794
784
|
/**
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
785
|
+
* @description Obtiene el Json Menu para el usuario definido segun su permisologia del Sistema
|
|
786
|
+
* @return Json data
|
|
787
|
+
* @author Ing. Wilmer Briceno
|
|
788
|
+
*/
|
|
799
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>;
|
|
800
796
|
}
|
|
801
797
|
interface filtroCuentasPresupuesto {
|
|
802
798
|
tipo?: 'E' | 'R';
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -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';
|
|
@@ -115,7 +116,7 @@ export { IServiceType, IService, IClause, IConfigSOC, IClauseModality, IServiceC
|
|
|
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';
|