sigesp 1.1.43-20250318 → 1.1.45-20250326
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/esm2020/lib/core/interfaces/Nomina.mjs +1 -1
- package/esm2020/lib/core/interfaces/RecursosHumanos.mjs +1 -1
- package/esm2020/lib/core/models/SNO/MAsignacionCargo.model.mjs +4 -1
- package/esm2020/lib/core/models/SNO/MCargosPersonal.model.mjs +7 -1
- package/esm2020/lib/core/models/SNO/MConfiguracionSNO.model.mjs +7 -1
- package/fesm2015/sigesp.mjs +15 -0
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +15 -0
- package/fesm2020/sigesp.mjs.map +1 -1
- package/lib/core/interfaces/Nomina.d.ts +1 -0
- package/lib/core/interfaces/RecursosHumanos.d.ts +5 -0
- package/lib/core/models/SNO/MAsignacionCargo.model.d.ts +1 -0
- package/lib/core/models/SNO/MCargosPersonal.model.d.ts +3 -0
- package/lib/core/models/SNO/MConfiguracionSNO.model.d.ts +2 -0
- package/package.json +1 -1
|
@@ -131,6 +131,8 @@ export interface IConfiguracionSNO {
|
|
|
131
131
|
sc_cuentarecdoc: string;
|
|
132
132
|
prosuehis: string;
|
|
133
133
|
altvoldat: string;
|
|
134
|
+
horjorlab: string;
|
|
135
|
+
regcaninc: string;
|
|
134
136
|
}
|
|
135
137
|
export interface IIncidencia {
|
|
136
138
|
valor: string;
|
|
@@ -305,6 +307,7 @@ export interface ICargosPersonal {
|
|
|
305
307
|
codtipper?: string;
|
|
306
308
|
id_dedicacion: string;
|
|
307
309
|
id_tipopersonal: string;
|
|
310
|
+
id_puetra: string;
|
|
308
311
|
estatus: string;
|
|
309
312
|
fecasi: string;
|
|
310
313
|
fecces: string;
|
|
@@ -325,6 +328,8 @@ export interface ICargosPersonal {
|
|
|
325
328
|
denclaper?: string;
|
|
326
329
|
codestorg?: string;
|
|
327
330
|
denestorg?: string;
|
|
331
|
+
despuetra?: string;
|
|
332
|
+
codpuetra?: string;
|
|
328
333
|
}
|
|
329
334
|
export interface IFamiliares {
|
|
330
335
|
id_enterprise: string;
|
|
@@ -40,6 +40,9 @@ export declare class MCargosPersonal extends MBasicModel {
|
|
|
40
40
|
fechaCese: string;
|
|
41
41
|
estatus: boolean;
|
|
42
42
|
denominacionEstatus: string;
|
|
43
|
+
idPuestoTrabajo: number;
|
|
44
|
+
codigoPuestoTrabajo: string;
|
|
45
|
+
descripcionPuestoTrabajo: string;
|
|
43
46
|
constructor(p?: ICargosPersonal);
|
|
44
47
|
dataInterface(): ICargosPersonal;
|
|
45
48
|
}
|
|
@@ -133,6 +133,8 @@ export declare class MConfiguracionSNO extends MBasicModel {
|
|
|
133
133
|
cuentaContableProveedorBeneficiario: string;
|
|
134
134
|
procesarSueldosHistoricos: number;
|
|
135
135
|
altoVolumenDatos: number;
|
|
136
|
+
registroCantidadProducidaIncidencia: string;
|
|
137
|
+
horasJornadaLaboral: number;
|
|
136
138
|
constructor(I?: IConfiguracionSNO);
|
|
137
139
|
dataInterface(): IConfiguracionSNO;
|
|
138
140
|
}
|