sigesp 0.9.38-20230223 → 0.9.39-20230321
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 +17 -3
- 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/interfaces/RecursosHumanos.js +1 -1
- package/esm2015/lib/core/interfaces/Usuario.js +1 -1
- package/esm2015/lib/core/models/SNO/MConceptosNomina.model.js +8 -1
- package/esm2015/lib/core/models/SNO/MEstructuraOrganizativa.model.js +9 -2
- package/esm2015/lib/sigesp.service.js +1 -1
- package/esm2015/lib/validation.service.js +3 -3
- package/fesm2015/sigesp.js +17 -3
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/Nomina.d.ts +3 -0
- package/lib/core/interfaces/RecursosHumanos.d.ts +3 -0
- package/lib/core/interfaces/Usuario.d.ts +1 -1
- package/lib/core/models/SNO/MConceptosNomina.model.d.ts +3 -0
- package/lib/core/models/SNO/MEstructuraOrganizativa.model.d.ts +3 -0
- package/package.json +1 -1
|
@@ -1064,6 +1064,9 @@ export interface IEstructuraOrganizativa {
|
|
|
1064
1064
|
ubirobinson: number;
|
|
1065
1065
|
ubizona: number;
|
|
1066
1066
|
ubinoaplica: number;
|
|
1067
|
+
id_uniadm: string;
|
|
1068
|
+
coduniadm?: string;
|
|
1069
|
+
denuniadm?: string;
|
|
1067
1070
|
}
|
|
1068
1071
|
export interface INivel {
|
|
1069
1072
|
value: number;
|
|
@@ -67,6 +67,9 @@ export declare class MConceptosNomina extends MBasicModel {
|
|
|
67
67
|
orden: number;
|
|
68
68
|
evaluarEnPrenomina: number;
|
|
69
69
|
antiguedadComplementaria: number;
|
|
70
|
+
idUnidadAdministrativa: number;
|
|
71
|
+
codigoUnidadAdministrativa: string;
|
|
72
|
+
denominacionUnidadAdministraiva: string;
|
|
70
73
|
constructor(e?: IConceptos);
|
|
71
74
|
dataInterface(): IConceptos;
|
|
72
75
|
denominacionSigno(sig: string): string;
|
|
@@ -34,6 +34,9 @@ export declare class MEstructuraOrganizativa extends MBasicModel {
|
|
|
34
34
|
ubicacionRobinson: number;
|
|
35
35
|
ubicacionZona: number;
|
|
36
36
|
ubicacionNoAplica: number;
|
|
37
|
+
idUnidadAdministrativa: number;
|
|
38
|
+
codigoUnidadAdministrativa: string;
|
|
39
|
+
denominacionUnidadAdministraiva: string;
|
|
37
40
|
constructor(e?: IEstructuraOrganizativa);
|
|
38
41
|
dataInterface(): IEstructuraOrganizativa;
|
|
39
42
|
}
|