sigesp 0.8.77-20220510 → 0.8.80-20220511
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 +14 -6
- 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/Nomina.js +1 -1
- package/esm2015/lib/core/models/SNO/MConceptosNomina.model.js +3 -3
- package/esm2015/lib/core/models/SNO/MDefinicionNomina.model.js +7 -1
- package/esm2015/lib/core/models/SNO/MPersonalNomina.model.js +3 -1
- package/esm2015/lib/sigesp.service.js +5 -5
- package/esm2015/public-api.js +1 -1
- package/fesm2015/sigesp.js +14 -6
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/Nomina.d.ts +4 -0
- package/lib/core/models/SNO/MDefinicionNomina.model.d.ts +3 -0
- package/lib/core/models/SNO/MPersonalNomina.model.d.ts +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/sigesp.metadata.json +1 -1
|
@@ -145,6 +145,9 @@ export interface INominaSimple {
|
|
|
145
145
|
staper?: string;
|
|
146
146
|
despernom?: string;
|
|
147
147
|
peractnom?: string;
|
|
148
|
+
id_organigrama?: string;
|
|
149
|
+
codestorg?: string;
|
|
150
|
+
denestorg?: string;
|
|
148
151
|
}
|
|
149
152
|
export interface IPeriodoNomina {
|
|
150
153
|
id_empresa: string;
|
|
@@ -249,6 +252,7 @@ export interface IPersonalNomina {
|
|
|
249
252
|
racnom?: string;
|
|
250
253
|
situacion?: string;
|
|
251
254
|
monpen?: string;
|
|
255
|
+
nacper?: string;
|
|
252
256
|
}
|
|
253
257
|
export interface IConstanteNomina {
|
|
254
258
|
id_empresa: string;
|
|
@@ -148,6 +148,9 @@ export declare class MNominaSimple extends MBasicModel {
|
|
|
148
148
|
descripcionPeriodoNomina: string;
|
|
149
149
|
periodoActualNomina: string;
|
|
150
150
|
editable: boolean;
|
|
151
|
+
idOrganigrama: number;
|
|
152
|
+
codigoEstructuraOrganizativa: string;
|
|
153
|
+
denominacionEstructuraOrganizativa: string;
|
|
151
154
|
constructor(e?: INominaSimple);
|
|
152
155
|
dataInterface(): INominaSimple;
|
|
153
156
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -118,6 +118,7 @@ export { MPrestamo, MPrestamoAmortizacion, MPrestamosPeriodo } from './lib/core/
|
|
|
118
118
|
export { MRConsolidadoConceptos, MRArchivoTXT, MRConstanciaTrabajo } from './lib/core/models/SNO/MReportesRRHH';
|
|
119
119
|
export { IProveedor, IOrganizationType, IProviderBeneficiary, IProviderBankAccount } from './lib/core/interfaces/Proveedor';
|
|
120
120
|
export { IConexion } from './lib/core/interfaces/Usuario';
|
|
121
|
+
export { IResponse } from './lib/core/interfaces/Response';
|
|
121
122
|
export { IEstructuraPresupuestariaOne, IEstructuraPresupuestariaTwo, IEstructuraPresupuestariaThree, IEstructuraPresupuestariaFour, IEstructuraPresupuestariaFive } from './lib/core/interfaces/EstructuraPresupuestaria';
|
|
122
123
|
export { ISpecialty } from './lib/core/interfaces/Especialidad';
|
|
123
124
|
export { IDocument } from './lib/core/interfaces/Documento';
|