sigesp 0.9.12-20221217 → 0.9.14-20221218
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 +346 -52
- package/bundles/sigesp.umd.js.map +1 -1
- package/bundles/sigesp.umd.min.js +2 -2
- package/bundles/sigesp.umd.min.js.map +1 -1
- package/esm2015/lib/core/interfaces/CentroCosto.js +1 -1
- package/esm2015/lib/core/interfaces/Configuracion.js +1 -1
- package/esm2015/lib/core/interfaces/Moneda.js +1 -1
- package/esm2015/lib/core/interfaces/UsuarioPrefijo.js +1 -1
- package/esm2015/lib/core/models/CFG/MPrefijo.model.js +61 -0
- package/esm2015/lib/core/models/CFG/Procede.model.js +31 -0
- package/esm2015/lib/core/models/CFG/TasaCambio.model.js +37 -0
- package/esm2015/lib/core/models/CFG/moneda.model.js +42 -0
- package/esm2015/lib/core/models/CFG/userPrefix.model.js +43 -0
- package/esm2015/lib/core/models/SCG/centroCosto.model.js +50 -6
- package/esm2015/lib/core/models/SPG/configurationSPG.model.js +2 -2
- package/esm2015/lib/core/models/SSS/sistema.js +21 -6
- package/esm2015/lib/sigesp.service.js +52 -5
- package/esm2015/lib/validation.service.js +1 -1
- package/esm2015/public-api.js +7 -4
- package/esm2015/sigesp.js +1 -1
- package/fesm2015/sigesp.js +308 -39
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/CentroCosto.d.ts +8 -1
- package/lib/core/interfaces/Configuracion.d.ts +33 -0
- package/lib/core/interfaces/UsuarioPrefijo.d.ts +8 -5
- package/lib/core/models/CFG/MPrefijo.model.d.ts +21 -0
- package/lib/core/models/CFG/Procede.model.d.ts +11 -0
- package/lib/core/models/CFG/TasaCambio.model.d.ts +13 -0
- package/lib/core/models/{STB → CFG}/moneda.model.d.ts +4 -2
- package/lib/core/models/CFG/userPrefix.model.d.ts +15 -0
- package/lib/core/models/SCG/centroCosto.model.d.ts +13 -1
- package/lib/core/models/SPG/configurationSPG.model.d.ts +1 -1
- package/lib/core/models/SSS/sistema.d.ts +4 -2
- package/lib/sigesp.service.d.ts +31 -3
- package/lib/validation.service.d.ts +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +9 -5
- package/sigesp.d.ts +10 -11
- package/sigesp.metadata.json +1 -1
- package/esm2015/lib/core/models/SSS/userPrefix.model.js +0 -15
- package/esm2015/lib/core/models/STB/moneda.model.js +0 -27
- package/lib/core/models/SSS/userPrefix.model.d.ts +0 -11
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
export interface ICentroCosto {
|
|
2
2
|
id_empresa: string;
|
|
3
3
|
id_enterprise: string;
|
|
4
|
-
centro
|
|
4
|
+
centro?: string;
|
|
5
5
|
codcencos: string;
|
|
6
6
|
denominacion: string;
|
|
7
7
|
}
|
|
8
|
+
export interface IUsuariosCentroCosto {
|
|
9
|
+
id_empresa: string;
|
|
10
|
+
id_enterprise: string;
|
|
11
|
+
codcencos: string;
|
|
12
|
+
codusu: string;
|
|
13
|
+
id_dt_cencos: string;
|
|
14
|
+
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IUsuarioPrefijo } from "./UsuarioPrefijo";
|
|
1
2
|
export interface IEmpresa {
|
|
2
3
|
id_empresa: string;
|
|
3
4
|
rifemp: string;
|
|
@@ -51,3 +52,35 @@ export interface IEnterprise {
|
|
|
51
52
|
sc_cuenta_ant: string;
|
|
52
53
|
spi_cuenta_sobrante: string;
|
|
53
54
|
}
|
|
55
|
+
export interface IProcedencia {
|
|
56
|
+
procede: string;
|
|
57
|
+
codsis: string;
|
|
58
|
+
opeproc: string;
|
|
59
|
+
desproc: string;
|
|
60
|
+
estdel: string;
|
|
61
|
+
}
|
|
62
|
+
export interface IPrefijo {
|
|
63
|
+
id_empresa: string;
|
|
64
|
+
id: string;
|
|
65
|
+
prefijo: string;
|
|
66
|
+
procede: any;
|
|
67
|
+
codsis: string;
|
|
68
|
+
nro_inicial: string;
|
|
69
|
+
nro_final: string;
|
|
70
|
+
maxlen: string;
|
|
71
|
+
nro_actual: string;
|
|
72
|
+
estact: string;
|
|
73
|
+
estcompscg: string;
|
|
74
|
+
estpregral: string;
|
|
75
|
+
estprefec: string;
|
|
76
|
+
usuarios: IUsuarioPrefijo[];
|
|
77
|
+
}
|
|
78
|
+
export interface ITasaCambio {
|
|
79
|
+
id_tascam: string;
|
|
80
|
+
codmon: string;
|
|
81
|
+
fectasdes: string;
|
|
82
|
+
horcamtas: string;
|
|
83
|
+
fectashas: string;
|
|
84
|
+
montascam: string;
|
|
85
|
+
denmon?: string;
|
|
86
|
+
}
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
export interface IUsuarioPrefijo {
|
|
2
|
-
codsis: string;
|
|
3
|
-
codusu: string;
|
|
4
|
-
id: string;
|
|
5
2
|
id_empresa: string;
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
id: string;
|
|
4
|
+
id_usuario: string;
|
|
5
|
+
id_dt_prefijo: string;
|
|
6
|
+
prefijo?: string;
|
|
7
|
+
procede?: string;
|
|
8
|
+
codsis?: string;
|
|
9
|
+
codusu?: string;
|
|
10
|
+
estact?: string;
|
|
8
11
|
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { IPrefijo } from '../../interfaces/Configuracion';
|
|
2
|
+
import { MBasicModel } from '../basic-model.model';
|
|
3
|
+
import { MUsuarioPrefijo } from './userPrefix.model';
|
|
4
|
+
export declare class MPrefijo extends MBasicModel {
|
|
5
|
+
idEmpresa: number;
|
|
6
|
+
id: number;
|
|
7
|
+
prefijo: string;
|
|
8
|
+
procede: string;
|
|
9
|
+
codsis: string;
|
|
10
|
+
numeroInicial: number;
|
|
11
|
+
numeroFinal: number;
|
|
12
|
+
maximaLogitud: number;
|
|
13
|
+
numeroActual: number;
|
|
14
|
+
estatusActivo: boolean;
|
|
15
|
+
estatusInicializarComprobanteSCG: boolean;
|
|
16
|
+
estatusPrefijoGeneral: boolean;
|
|
17
|
+
estatusPrefijoFecha: boolean;
|
|
18
|
+
usuarios: MUsuarioPrefijo[];
|
|
19
|
+
constructor(e?: IPrefijo);
|
|
20
|
+
dataInterface(): IPrefijo;
|
|
21
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { MBasicModel } from '../basic-model.model';
|
|
2
|
+
import { IProcedencia } from './../../interfaces/Configuracion';
|
|
3
|
+
export declare class MProcedencia extends MBasicModel {
|
|
4
|
+
procede: string;
|
|
5
|
+
codigoSistema: string;
|
|
6
|
+
operacion: string;
|
|
7
|
+
descripcion: string;
|
|
8
|
+
estatus: number;
|
|
9
|
+
constructor(e?: IProcedencia);
|
|
10
|
+
dataInterface(): IProcedencia;
|
|
11
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ITasaCambio } from "../../interfaces/Configuracion";
|
|
2
|
+
import { MBasicModel } from "../basic-model.model";
|
|
3
|
+
export declare class MExchangeRate extends MBasicModel {
|
|
4
|
+
codigoMoneda: number;
|
|
5
|
+
fechaDesde: string;
|
|
6
|
+
horaCambioTasa: string;
|
|
7
|
+
fechaHasta: string;
|
|
8
|
+
montoTasa: number;
|
|
9
|
+
denominacionMoneda: string;
|
|
10
|
+
idTasaCambio: number;
|
|
11
|
+
constructor(e?: ITasaCambio);
|
|
12
|
+
dataInterface(): ITasaCambio;
|
|
13
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { IMoneda, IMonedaConfig } from '../../interfaces/Moneda';
|
|
2
|
+
import { MBasicModel } from '../basic-model.model';
|
|
2
3
|
export declare class MMoneda {
|
|
3
4
|
codigo: string;
|
|
4
5
|
denominacion: string;
|
|
@@ -6,7 +7,7 @@ export declare class MMoneda {
|
|
|
6
7
|
simbolo: string;
|
|
7
8
|
constructor(moneda: IMoneda);
|
|
8
9
|
}
|
|
9
|
-
export declare class MMonedaConfig {
|
|
10
|
+
export declare class MMonedaConfig extends MBasicModel {
|
|
10
11
|
codigo: string;
|
|
11
12
|
denominacion: string;
|
|
12
13
|
codigoIso: string;
|
|
@@ -14,5 +15,6 @@ export declare class MMonedaConfig {
|
|
|
14
15
|
separadorDecimal: string;
|
|
15
16
|
separadorMiles: string;
|
|
16
17
|
decimales: number;
|
|
17
|
-
constructor(moneda
|
|
18
|
+
constructor(moneda?: IMonedaConfig);
|
|
19
|
+
dataInterface(): IMonedaConfig;
|
|
18
20
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { IUsuarioPrefijo } from "../../interfaces/UsuarioPrefijo";
|
|
2
|
+
import { MBasicModel } from "../basic-model.model";
|
|
3
|
+
export declare class MUsuarioPrefijo extends MBasicModel {
|
|
4
|
+
idEmpresa: number;
|
|
5
|
+
id: number;
|
|
6
|
+
idUsuario: number;
|
|
7
|
+
idDtPrefijo: number;
|
|
8
|
+
prefijo: string;
|
|
9
|
+
procede: string;
|
|
10
|
+
codigoSistema: string;
|
|
11
|
+
codigoUsuario: string;
|
|
12
|
+
estatusActivo: boolean;
|
|
13
|
+
constructor(e?: IUsuarioPrefijo);
|
|
14
|
+
dataInterface(): IUsuarioPrefijo;
|
|
15
|
+
}
|
|
@@ -1,8 +1,20 @@
|
|
|
1
|
+
import { IUsuariosCentroCosto } from './../../interfaces/CentroCosto';
|
|
1
2
|
import { ICentroCosto } from '../../interfaces/CentroCosto';
|
|
2
|
-
|
|
3
|
+
import { MBasicModel } from '../basic-model.model';
|
|
4
|
+
export declare class MCentroCosto extends MBasicModel {
|
|
3
5
|
centro: string;
|
|
4
6
|
denominacion: string;
|
|
5
7
|
idEmpresa: number;
|
|
6
8
|
idEnterprise: number;
|
|
7
9
|
constructor(centroCosto: ICentroCosto);
|
|
10
|
+
dataInterface(): ICentroCosto;
|
|
11
|
+
}
|
|
12
|
+
export declare class MUsuarioCentroCosto extends MBasicModel {
|
|
13
|
+
idEmpresa: number;
|
|
14
|
+
idEnterprise: number;
|
|
15
|
+
codigoCentroCosto: string;
|
|
16
|
+
usuario: string;
|
|
17
|
+
idDtCentro: number;
|
|
18
|
+
constructor(e: IUsuariosCentroCosto);
|
|
19
|
+
dataInterface(): IUsuariosCentroCosto;
|
|
8
20
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IConfigurationSPG } from '../../interfaces/ConfigurationSPG';
|
|
2
|
-
import { MMonedaConfig } from '../
|
|
2
|
+
import { MMonedaConfig } from '../CFG/moneda.model';
|
|
3
3
|
export declare class MConfigurationSPG {
|
|
4
4
|
cuentasPresupuestoCedentes: string;
|
|
5
5
|
cunetasPresupuestoRecaudadores: string;
|
|
@@ -1,10 +1,12 @@
|
|
|
1
|
+
import { MBasicModel } from '../basic-model.model';
|
|
1
2
|
import { ISistema } from '../../interfaces/Sistema';
|
|
2
3
|
import { MUserDetail } from './userDetail.model';
|
|
3
|
-
export declare class MSistema {
|
|
4
|
+
export declare class MSistema extends MBasicModel {
|
|
4
5
|
nombre: string;
|
|
5
6
|
codigo: string;
|
|
6
7
|
estado: string;
|
|
7
8
|
usuarios: MUserDetail[];
|
|
8
9
|
eliminados: MUserDetail[];
|
|
9
|
-
constructor(sis
|
|
10
|
+
constructor(sis?: ISistema);
|
|
11
|
+
dataInterface(): ISistema;
|
|
10
12
|
}
|
package/lib/sigesp.service.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { MatDialog } from '@angular/material/dialog';
|
|
|
6
6
|
import { filterData } from './core/interfaces/Catalogo';
|
|
7
7
|
import { MCuentaPresupuesto } from './core/models/SPG/cuentaPresupuesto.model';
|
|
8
8
|
import { MCuentaInstitucional } from './core/models/SCG/cuentaInstitucional.model';
|
|
9
|
-
import { MMoneda } from './core/models/
|
|
9
|
+
import { MMoneda } from './core/models/CFG/moneda.model';
|
|
10
10
|
import { ToastrService } from 'ngx-toastr';
|
|
11
11
|
import { MUnidadTributaria } from './core/models/STB/unidadTributaria.model';
|
|
12
12
|
import { AbstractControl, FormGroup } from '@angular/forms';
|
|
@@ -24,12 +24,13 @@ import { MSistema } from './core/models/SSS/sistema';
|
|
|
24
24
|
import { IComprobantePresupuestarioEgresos, IComprobantePresupuestarioIngresos } from './core/interfaces/ComprobantePresupuestario';
|
|
25
25
|
import { MComprobantePresupuestarioEgresos, MComprobantePresupuestarioIngresos } from './core/models/SPG/comprobantePresupuestario.model';
|
|
26
26
|
import { MCuentaIngresos } from './core/models/SCG/IncomeAccount';
|
|
27
|
-
import { MCountry, MState, MMunicipality, MParish, MCity } from './core/models/CFG/locations.model';
|
|
27
|
+
import { MCountry, MState, MMunicipality, MParish, MCity, MCommunity } from './core/models/CFG/locations.model';
|
|
28
28
|
import { IResponse } from './core/interfaces/Response';
|
|
29
29
|
import { MComponent } from './core/models/SSS/component.model';
|
|
30
30
|
import { MLog } from './core/models/SSS/log.model';
|
|
31
31
|
import { MSnoLog } from './core/models/SNO/MAuditoria.model';
|
|
32
32
|
import { MComunidad } from './core/models/CFG/comunidad.model';
|
|
33
|
+
import { MExchangeRate } from './core/models/CFG/TasaCambio.model';
|
|
33
34
|
export declare class SigespService {
|
|
34
35
|
private http;
|
|
35
36
|
private dialog;
|
|
@@ -312,6 +313,7 @@ export declare class SigespService {
|
|
|
312
313
|
* @author Carlos Albornoz
|
|
313
314
|
*/
|
|
314
315
|
getCostCenters(): Observable<IResponse>;
|
|
316
|
+
getUserCostCenters(codigo: string): Observable<IResponse>;
|
|
315
317
|
/**
|
|
316
318
|
* @description Abre el dialog de checkks
|
|
317
319
|
* @param columns Columnas que va a tener la tabla
|
|
@@ -464,6 +466,13 @@ export declare class SigespService {
|
|
|
464
466
|
* @returns
|
|
465
467
|
*/
|
|
466
468
|
getMonedas(tipo: string, id?: number): Observable<MMoneda[]>;
|
|
469
|
+
/**
|
|
470
|
+
* @Description: Obtiene la tasa de cambio
|
|
471
|
+
* @param tipo string
|
|
472
|
+
* @param id codigo moneda
|
|
473
|
+
* @returns array/null
|
|
474
|
+
*/
|
|
475
|
+
getCurrencyExchangeRate(tipo?: 'all' | 'moneda', id?: number): Observable<MExchangeRate[]>;
|
|
467
476
|
/**
|
|
468
477
|
* @description Abre el dialog de las las cuentas contables (Cuentas Institucionales)
|
|
469
478
|
* @return Promise<McuentaInstitucional>
|
|
@@ -561,10 +570,21 @@ export declare class SigespService {
|
|
|
561
570
|
* @author Carlos Albornoz
|
|
562
571
|
* @modificado 10-01-2022
|
|
563
572
|
* @param pais: Codigo del pais
|
|
573
|
+
* @param estado: Codigo del estado
|
|
574
|
+
|
|
564
575
|
|
|
565
576
|
*/
|
|
566
577
|
getCity(pais?: string, estado?: string): Observable<MCity[]>;
|
|
567
578
|
/**
|
|
579
|
+
* @description Obtiene las ciudades
|
|
580
|
+
* @return Observable<MParish>
|
|
581
|
+
* @author Dimaly Crespo
|
|
582
|
+
* @modificado 10-01-2022
|
|
583
|
+
* @param pais: Codigo del pais
|
|
584
|
+
|
|
585
|
+
*/
|
|
586
|
+
getCommunities(pais?: string, estado?: string, municipio?: string, parroquia?: string): Observable<MCommunity[]>;
|
|
587
|
+
/**
|
|
568
588
|
* @description Obtiene los sistemas activas
|
|
569
589
|
* @return Observable<MSistema>
|
|
570
590
|
* @author Carlos Albornoz
|
|
@@ -616,7 +636,15 @@ export declare class SigespService {
|
|
|
616
636
|
* @return Observable<MUsuarioPrefijo[]>
|
|
617
637
|
* @author Carlos Albornoz
|
|
618
638
|
*/
|
|
619
|
-
getUserPrefix(filter?: '
|
|
639
|
+
getUserPrefix(filter?: 'detail', code?: string): Observable<IResponse>;
|
|
640
|
+
/**
|
|
641
|
+
* @description Obtiene los pefijo
|
|
642
|
+
* @param procede De que módulo procede
|
|
643
|
+
* @param codsis Código del sistema
|
|
644
|
+
* @return Observable<MUsuarioPrefijo[]>
|
|
645
|
+
* @author DimalyCrespo 17-12-2022
|
|
646
|
+
*/
|
|
647
|
+
getPrefix(filter?: 'all' | 'one', code?: string): Observable<IResponse>;
|
|
620
648
|
/**
|
|
621
649
|
* @description Abre el dialog para buscar los proveedores
|
|
622
650
|
* @return Promise<MProveedor>
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -5,6 +5,10 @@ export { MBasicModel } from './lib/core/models/basic-model.model';
|
|
|
5
5
|
export { MEmpresa } from './lib/core/models/CFG/Empresa.model';
|
|
6
6
|
export { MEnterprise } from './lib/core/models/CFG/Enterprise.model';
|
|
7
7
|
export { MComunidad } from './lib/core/models/CFG/comunidad.model';
|
|
8
|
+
export { MPrefijo } from './lib/core/models/CFG/MPrefijo.model';
|
|
9
|
+
export { MProcedencia } from './lib/core/models/CFG/Procede.model';
|
|
10
|
+
export { MExchangeRate } from './lib/core/models/CFG/TasaCambio.model';
|
|
11
|
+
export { MUsuarioPrefijo } from './lib/core/models/CFG/userPrefix.model';
|
|
8
12
|
export { MCountry, MMunicipality, MParish, MState, MCity, MCommunity } from './lib/core/models/CFG/locations.model';
|
|
9
13
|
export { MTipoDocumentoCXP } from './lib/core/models/CXP/MTipoDocumentoCXP.model';
|
|
10
14
|
export { MConceptosCXP } from './lib/core/models/CXP/MConceptosCXP.model';
|
|
@@ -28,7 +32,7 @@ export { MPlanUnicoCuenta } from './lib/core/models/SCG/planUnicoCuenta.model';
|
|
|
28
32
|
export { MCuentaIngresos } from './lib/core/models/SCG/IncomeAccount';
|
|
29
33
|
export { MConfigurationSPG } from './lib/core/models/SPG/configurationSPG.model';
|
|
30
34
|
export { MAccountMarriage } from './lib/core/models/SCG/accountMarriage.model';
|
|
31
|
-
export { MCentroCosto } from './lib/core/models/SCG/centroCosto.model';
|
|
35
|
+
export { MCentroCosto, MUsuarioCentroCosto } from './lib/core/models/SCG/centroCosto.model';
|
|
32
36
|
export { MServiceType } from './lib/core/models/SOC/serviceType.model';
|
|
33
37
|
export { MService } from './lib/core/models/SOC/service.model';
|
|
34
38
|
export { MClause } from './lib/core/models/SOC/clause.model';
|
|
@@ -39,9 +43,8 @@ export { MServiceCharge } from './lib/core/models/SOC/serviceCharge.model';
|
|
|
39
43
|
export { MUnidadTributaria } from './lib/core/models/STB/unidadTributaria.model';
|
|
40
44
|
export { MDeduction, MConceptoRetencion } from './lib/core/models/STB/deduction.model';
|
|
41
45
|
export { MDeductionType } from './lib/core/models/STB/deductionType.model';
|
|
42
|
-
export { MMoneda, MMonedaConfig, } from './lib/core/models/
|
|
46
|
+
export { MMoneda, MMonedaConfig, } from './lib/core/models/CFG/moneda.model';
|
|
43
47
|
export { MUsuario } from './lib/core/models/SSS/user.model';
|
|
44
|
-
export { MUsuarioPrefijo } from './lib/core/models/SSS/userPrefix.model';
|
|
45
48
|
export { MConfigSSS } from './lib/core/models/SSS/securityConfiguration.model';
|
|
46
49
|
export { MUserDetail } from './lib/core/models/SSS/userDetail.model';
|
|
47
50
|
export { MGroup } from './lib/core/models/SSS/group.model';
|
|
@@ -122,6 +125,7 @@ export { MPlanHorario, MPeriodosPlan } from './lib/core/models/SNO/MPlanHorario.
|
|
|
122
125
|
export { IProveedor, IOrganizationType, IProviderBeneficiary, IProviderBankAccount } from './lib/core/interfaces/Proveedor';
|
|
123
126
|
export { IConexion } from './lib/core/interfaces/Usuario';
|
|
124
127
|
export { IResponse } from './lib/core/interfaces/Response';
|
|
128
|
+
export { ICentroCosto, IUsuariosCentroCosto } from './lib/core/interfaces/CentroCosto';
|
|
125
129
|
export { IEstructuraPresupuestariaOne, IEstructuraPresupuestariaTwo, IEstructuraPresupuestariaThree, IEstructuraPresupuestariaFour, IEstructuraPresupuestariaFive } from './lib/core/interfaces/EstructuraPresupuestaria';
|
|
126
130
|
export { ISpecialty } from './lib/core/interfaces/Especialidad';
|
|
127
131
|
export { IDocument } from './lib/core/interfaces/Documento';
|
|
@@ -138,8 +142,8 @@ export { ISistema } from './lib/core/interfaces/Sistema';
|
|
|
138
142
|
export { IUnitAdministrative } from './lib/core/interfaces/Presupuesto';
|
|
139
143
|
export { IServiceCharge, IConceptosCXP, ITipoDocumentoCXP } from './lib/core/interfaces/CuentasPorPagar';
|
|
140
144
|
export { IAsignacionCargo, IConceptos, IConceptosPersonalNomina, IConceptosVacaciones, IConstanteNomina, IConstantePersonaNomina, IHojaTiempo, INomina, IPeriodoNomina, IPersonalNomina, IPrimasConcepto, IEncargaduria, ICodigoUnicoRac, INominaSimple, Reporte, SalarioNormal, Signo, TipoCestaTicket, } from './lib/core/interfaces/Nomina';
|
|
141
|
-
export { IEmpresa, IEnterprise, } from './lib/core/interfaces/Configuracion';
|
|
142
|
-
export { IConfiguracionSNO, IAnticipoPrestacion, IBenefiaciario, ICargosPersonal, IDeudaAnterior, IEstudioRealizado, IFamiliares, IFideicomiso, IImpuestoSobreRenta, IIncidencia, IPermisos, IPersonal, IPersonalCuentasBancarias, IPrestacionesAntiguedad, ISalarioHistorico, ITrabajoAnterior, IVacacionesPersonal, IAcademico, ICampos, ICargaFamiliar, IClasificacionObrero, IDialogData, IDtRequisitosMinimos, IExperienciaLaboral, IFormacionAcademica, IFormacionInformal, IFuenteFinanciamiento, IGrados, IPrimaGrados, IRequisitosConcursante, IRequisitosConcursos, IRequisitosMinismos, ISolicitudEmpleo, ITabulador, ITabuladorNomina, IArchivoTxt, IArchivoTxtCampos, IAspectoEvaluacion, IComponente, IConcursante, IConcurso, IDedicacion, IDefinicionesBasicas, IEscalaEvaluacion, IEscalaEvaluacionDt, IEstructuraOrganizativa, IFeriados, IHorario, IItemsEvaluacion, IMetodoBanco, IMetodos, INivel, IRango, ITablaVacaciones, ITablaVacacionesPeriodo, ITipoEvaluacion, ITipoEvaluacionAspectos, ITipoPersonal, ITiposEnfermedad, IUbicacionFisica, IPersonalJubilado, IArchivoTXT, ICalculoPrestacion, ICambioEstatusPersonal, ICargaMasiva, IConfiguracionFideicomiso, IFideicomisoInteres, IFideicomisoPeriodo, IFideicomisoPeriodoInteres, IFideicomisoPeriodoInteresCatalogo, IConstancias, ITrabajosConcursantes, IEstudiosConcursantes, IFamiliaConcursante, IPrestamo, IPrestamoAmortizacion, IPrestamoPeriodo, IPrevioEvaluacion, IPrevioEvaluacionDt, IRConsolidadoConceptos, IRConstanciaTrabajo, IRPeriodo, IRRetenciones, IRSindicatos, IResultadosEvaluacion, ISueldoMinimo, IRListadoPersonal, IRListadoTipoPersonal, IPlanHorario, IHorariosPeriodosPlan, IPeriodosPlan } from './lib/core/interfaces/RecursosHumanos';
|
|
145
|
+
export { IEmpresa, IEnterprise, IPrefijo, IProcedencia, ITasaCambio } from './lib/core/interfaces/Configuracion';
|
|
146
|
+
export { IConfiguracionSNO, IAnticipoPrestacion, IBenefiaciario, ICargosPersonal, IDeudaAnterior, IEstudioRealizado, IFamiliares, IFideicomiso, IImpuestoSobreRenta, IIncidencia, IPermisos, IPersonal, IPersonalCuentasBancarias, IPrestacionesAntiguedad, ISalarioHistorico, ITrabajoAnterior, IVacacionesPersonal, IAcademico, ICampos, ICargaFamiliar, IClasificacionObrero, IDialogData, IDtRequisitosMinimos, IExperienciaLaboral, IFormacionAcademica, IFormacionInformal, IFuenteFinanciamiento, IGrados, IPrimaGrados, IRequisitosConcursante, IRequisitosConcursos, IRequisitosMinismos, ISolicitudEmpleo, ITabulador, ITabuladorNomina, IArchivoTxt, IArchivoTxtCampos, IAspectoEvaluacion, IComponente, IConcursante, IConcurso, IDedicacion, IDefinicionesBasicas, IEscalaEvaluacion, IEscalaEvaluacionDt, IEstructuraOrganizativa, IFeriados, IHorario, IItemsEvaluacion, IMetodoBanco, IMetodos, INivel, IRango, ITablaVacaciones, ITablaVacacionesPeriodo, ITipoEvaluacion, ITipoEvaluacionAspectos, ITipoPersonal, ITiposEnfermedad, IUbicacionFisica, IPersonalJubilado, IArchivoTXT, ICalculoPrestacion, ICambioEstatusPersonal, ICargaMasiva, IConfiguracionFideicomiso, IFideicomisoInteres, IFideicomisoPeriodo, IFideicomisoPeriodoInteres, IFideicomisoPeriodoInteresCatalogo, IConstancias, ITrabajosConcursantes, IEstudiosConcursantes, IFamiliaConcursante, IPrestamo, IPrestamoAmortizacion, IPrestamoPeriodo, IPrevioEvaluacion, IPrevioEvaluacionDt, IRConsolidadoConceptos, IRConstanciaTrabajo, IRPeriodo, IRRetenciones, IRSindicatos, IResultadosEvaluacion, ISueldoMinimo, IRListadoPersonal, IRListadoTipoPersonal, IPlanHorario, IHorariosPeriodosPlan, IPeriodosPlan, } from './lib/core/interfaces/RecursosHumanos';
|
|
143
147
|
export { ISnoLog } from './lib/core/interfaces/Auditoria';
|
|
144
148
|
export { IDetaEntrada, IEntradaSuministros, IDetaContable } from './lib/core/interfaces/EntradaSuministro';
|
|
145
149
|
export { ITipoDepositos } from './lib/core/interfaces/ITipoDepositos';
|
package/sigesp.d.ts
CHANGED
|
@@ -4,24 +4,23 @@
|
|
|
4
4
|
export * from './public-api';
|
|
5
5
|
export { AppComponent as ɵf } from './lib/app/app.component';
|
|
6
6
|
export { ICatalogo as ɵi } from './lib/core/interfaces/Catalogo';
|
|
7
|
-
export {
|
|
8
|
-
export { IComprobantePresupuestarioEgresos as ɵu, IComprobantePresupuestarioIngresos as ɵv } from './lib/core/interfaces/ComprobantePresupuestario';
|
|
7
|
+
export { IComprobantePresupuestarioEgresos as ɵv, IComprobantePresupuestarioIngresos as ɵw } from './lib/core/interfaces/ComprobantePresupuestario';
|
|
9
8
|
export { IComunidad as ɵq } from './lib/core/interfaces/Comunidad';
|
|
10
|
-
export { IConfiguracionSCG as
|
|
11
|
-
export { IConfigurationSPG as
|
|
12
|
-
export { ICuentaEgresos as
|
|
13
|
-
export { ICuentaInstitucional as
|
|
14
|
-
export { ICuentaPresupuesto as
|
|
9
|
+
export { IConfiguracionSCG as ɵy } from './lib/core/interfaces/ConfiguracionSCG';
|
|
10
|
+
export { IConfigurationSPG as ɵba } from './lib/core/interfaces/ConfigurationSPG';
|
|
11
|
+
export { ICuentaEgresos as ɵu } from './lib/core/interfaces/CuentaEgresos';
|
|
12
|
+
export { ICuentaInstitucional as ɵx } from './lib/core/interfaces/CuentaInstitucional';
|
|
13
|
+
export { ICuentaPresupuesto as ɵs } from './lib/core/interfaces/CuentaPresupuesto';
|
|
15
14
|
export { IEstructuraPresupuestariaFiveComplete as ɵb } from './lib/core/interfaces/EstructuraPresupuestaria';
|
|
16
|
-
export { IFuenteFinanciamiento as
|
|
17
|
-
export { IAccountMarriage as
|
|
15
|
+
export { IFuenteFinanciamiento as ɵt } from './lib/core/interfaces/FuenteFinanciamiento';
|
|
16
|
+
export { IAccountMarriage as ɵbb } from './lib/core/interfaces/Integracion';
|
|
18
17
|
export { ICommunity as ɵc } from './lib/core/interfaces/Lugares';
|
|
19
18
|
export { IMoneda as ɵbd, IMonedaConfig as ɵbe } from './lib/core/interfaces/Moneda';
|
|
20
19
|
export { ICargoNomina as ɵe, ICargoOrganigrama as ɵd } from './lib/core/interfaces/Nomina';
|
|
21
|
-
export { IPlanUnicoCuenta as
|
|
20
|
+
export { IPlanUnicoCuenta as ɵz } from './lib/core/interfaces/PlanUnicoCuenta';
|
|
22
21
|
export { IUnidadTributaria as ɵbc } from './lib/core/interfaces/UnidadTributaria';
|
|
23
22
|
export { IUsuario as ɵa } from './lib/core/interfaces/Usuario';
|
|
24
|
-
export { IUsuarioPrefijo as
|
|
23
|
+
export { IUsuarioPrefijo as ɵr } from './lib/core/interfaces/UsuarioPrefijo';
|
|
25
24
|
export { CatalogoDobleInputComponent as ɵn } from './lib/shared/components/catalogo-doble-input/catalogo-doble-input.component';
|
|
26
25
|
export { CatalogoEstructurasComponent as ɵm } from './lib/shared/components/catalogo-estructuras/catalogo-estructuras.component';
|
|
27
26
|
export { CatalogoComponent as ɵh } from './lib/shared/components/catalogo/catalogo.component';
|