sigesp 0.9.65-20230913 → 0.9.67-20230914
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 +19 -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/RecursosHumanos.js +1 -1
- package/esm2015/lib/core/interfaces/Tributos.js +1 -1
- package/esm2015/lib/core/models/SNO/MBeneficiario.model.js +7 -1
- package/esm2015/lib/core/models/SNO/MConfiguracionSNO.model.js +7 -1
- package/esm2015/lib/core/models/STB/deduction.model.js +8 -2
- package/fesm2015/sigesp.js +19 -1
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/RecursosHumanos.d.ts +4 -0
- package/lib/core/interfaces/Tributos.d.ts +2 -0
- package/lib/core/models/SNO/MBeneficiario.model.d.ts +2 -0
- package/lib/core/models/SNO/MConfiguracionSNO.model.d.ts +2 -0
- package/lib/core/models/STB/deduction.model.d.ts +2 -0
- package/package.json +1 -1
|
@@ -136,6 +136,8 @@ export interface IConfiguracionSNO {
|
|
|
136
136
|
segper: string;
|
|
137
137
|
regdesinc: string;
|
|
138
138
|
reglabinc: string;
|
|
139
|
+
incbenperautmodben: string;
|
|
140
|
+
sc_cuentarecdoc: string;
|
|
139
141
|
}
|
|
140
142
|
export interface IIncidencia {
|
|
141
143
|
valor: string;
|
|
@@ -478,6 +480,8 @@ export interface IBenefiaciario {
|
|
|
478
480
|
codest: string;
|
|
479
481
|
codmun: string;
|
|
480
482
|
codpar: string;
|
|
483
|
+
id_dt_ben: string;
|
|
484
|
+
sc_cuentarecdoc: string;
|
|
481
485
|
despai?: string;
|
|
482
486
|
desest?: string;
|
|
483
487
|
desmun?: string;
|
|
@@ -3,6 +3,7 @@ import { IBenefiaciario } from "../../interfaces/RecursosHumanos";
|
|
|
3
3
|
export declare class MBeneficiario extends MBasicModel {
|
|
4
4
|
idEnterprise: number;
|
|
5
5
|
idEmpresa: number;
|
|
6
|
+
idDtBeneficiario: number;
|
|
6
7
|
idPersonal: number;
|
|
7
8
|
idFamiliar: number;
|
|
8
9
|
idProveedor: number;
|
|
@@ -39,6 +40,7 @@ export declare class MBeneficiario extends MBasicModel {
|
|
|
39
40
|
descripcionEstado: string;
|
|
40
41
|
descripcionMunicipio: string;
|
|
41
42
|
descripcionParroquia: string;
|
|
43
|
+
cuentaPagoProveedores: string;
|
|
42
44
|
constructor(e?: IBenefiaciario);
|
|
43
45
|
dataInterface(): IBenefiaciario;
|
|
44
46
|
}
|
|
@@ -138,6 +138,8 @@ export declare class MConfiguracionSNO extends MBasicModel {
|
|
|
138
138
|
registroDescansoIncidencia: string;
|
|
139
139
|
registroLaboralIncidencia: string;
|
|
140
140
|
codigoConceptoVaccaiones: string;
|
|
141
|
+
incluirBeneficiarioDelPersonalAutomaticamenteModuloBeneficiarios: number;
|
|
142
|
+
cuentaContableProveedorBeneficiario: string;
|
|
141
143
|
constructor(I?: IConfiguracionSNO);
|
|
142
144
|
dataInterface(): IConfiguracionSNO;
|
|
143
145
|
}
|
|
@@ -13,6 +13,8 @@ export declare class MDeduction extends MBasicModel {
|
|
|
13
13
|
deducible: number;
|
|
14
14
|
tipopers: string;
|
|
15
15
|
id_conret: number;
|
|
16
|
+
customerRetentionAccount: string;
|
|
17
|
+
statusCommercial: number;
|
|
16
18
|
constructor(deduction?: IDeduction);
|
|
17
19
|
dataInterface(): IDeduction;
|
|
18
20
|
}
|