sigesp 0.9.43-23230413 → 0.9.45-23230426
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 +25 -1
- 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/Configuracion.js +1 -1
- package/esm2015/lib/core/interfaces/EstructuraPresupuestaria.js +1 -1
- package/esm2015/lib/core/models/CFG/Empresa.model.js +19 -1
- package/esm2015/lib/core/models/SNO/MCargosPersonal.model.js +2 -2
- package/esm2015/lib/sigesp.service.js +7 -1
- package/fesm2015/sigesp.js +25 -1
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/Configuracion.d.ts +7 -0
- package/lib/core/interfaces/EstructuraPresupuestaria.d.ts +1 -0
- package/lib/core/models/CFG/Empresa.model.d.ts +7 -0
- package/lib/sigesp.service.d.ts +6 -0
- package/package.json +1 -1
|
@@ -38,6 +38,13 @@ export interface IEmpresa {
|
|
|
38
38
|
id_ep3: string;
|
|
39
39
|
id_ep4: string;
|
|
40
40
|
id_ep5: string;
|
|
41
|
+
codfuefin: string;
|
|
42
|
+
codigoftefin?: string;
|
|
43
|
+
id_uniadm: string;
|
|
44
|
+
coduniadm?: string;
|
|
45
|
+
denuniadm?: string;
|
|
46
|
+
codcencos: string;
|
|
47
|
+
estpre: string;
|
|
41
48
|
}
|
|
42
49
|
export interface IEnterprise {
|
|
43
50
|
id_empresa: string;
|
|
@@ -39,6 +39,13 @@ export declare class MEmpresa extends MBasicModel {
|
|
|
39
39
|
idEP3: number;
|
|
40
40
|
idEP4: number;
|
|
41
41
|
idEP5: number;
|
|
42
|
+
codigoFuenteFinanciaminto: number;
|
|
43
|
+
idUnidadAdministrativa: number;
|
|
44
|
+
denominacionUnidadAdministrativa: string;
|
|
45
|
+
codigoUnidadAdministrativa: string;
|
|
46
|
+
codigoFuenteFinanciamintoMostrar: string;
|
|
47
|
+
codigoCentroCosto: string;
|
|
48
|
+
estructuraPresupuestaria: string;
|
|
42
49
|
constructor(emp?: IEmpresa);
|
|
43
50
|
dataInterface(): IEmpresa;
|
|
44
51
|
}
|
package/lib/sigesp.service.d.ts
CHANGED
|
@@ -691,6 +691,12 @@ export declare class SigespService {
|
|
|
691
691
|
* @author Carlos Albornoz
|
|
692
692
|
*/
|
|
693
693
|
getBankAccountTypes(): Observable<IResponse>;
|
|
694
|
+
/**
|
|
695
|
+
* @description obtiene las cuenta segun el id
|
|
696
|
+
* @param tipo {'banco', 'default'}
|
|
697
|
+
* @param id para la opcion banco usar id=idBanco, opcion defaulf id=idEnterprise
|
|
698
|
+
* @returns
|
|
699
|
+
*/
|
|
694
700
|
getAllBankAccount(tipo: string, id: number): Observable<any>;
|
|
695
701
|
/**
|
|
696
702
|
* @description Obtiene los bancos sigecof
|