sigesp 0.8.52-211212 → 0.8.56-220107
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 +22 -9
- 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/models/SNO/MConfiguracionSNO.model.js +6 -6
- package/esm2015/lib/sigesp.service.js +17 -5
- package/fesm2015/sigesp.js +21 -9
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/sigesp.service.d.ts +11 -4
- package/package.json +1 -1
- package/sigesp.metadata.json +1 -1
package/lib/sigesp.service.d.ts
CHANGED
|
@@ -35,6 +35,7 @@ export declare class SigespService {
|
|
|
35
35
|
usuarioActivo: MUsuario;
|
|
36
36
|
URL: string;
|
|
37
37
|
currentComponent: MComponent;
|
|
38
|
+
userMenu: any;
|
|
38
39
|
constructor(http: HttpClient, dialog: MatDialog, toast: ToastrService);
|
|
39
40
|
/**
|
|
40
41
|
* @description Valida que selo se escriban guiones y 9
|
|
@@ -774,11 +775,17 @@ export declare class SigespService {
|
|
|
774
775
|
*/
|
|
775
776
|
getPersonal(dato?: any): Observable<any>;
|
|
776
777
|
/**
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
778
|
+
* @description obtener personal Nomina segun filtro
|
|
779
|
+
* @return Observable<IResponse>
|
|
780
|
+
* @date 15-11-2021
|
|
781
|
+
*/
|
|
781
782
|
getPersonalNomina(dato?: any): Observable<any>;
|
|
783
|
+
/**
|
|
784
|
+
* @description Obtiene el Json Menu para el usuario definido segun su permisologia del Sistema
|
|
785
|
+
* @return Json data
|
|
786
|
+
* @author Ing. Wilmer Briceno
|
|
787
|
+
*/
|
|
788
|
+
getJsonMenu(id_usuario: number, sistema: string): Observable<any>;
|
|
782
789
|
}
|
|
783
790
|
interface filtroCuentasPresupuesto {
|
|
784
791
|
tipo?: 'E' | 'R';
|