sigesp 0.9.22-20221229 → 0.9.24-20230111
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 +39 -23
- 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/Configuracion.js +1 -1
- package/esm2015/lib/core/interfaces/Presupuesto.js +1 -1
- package/esm2015/lib/core/models/CFG/Enterprise.model.js +5 -2
- package/esm2015/lib/core/models/SPG/administrativeUnit.model.js +35 -14
- package/esm2015/lib/sigesp.service.js +2 -10
- package/fesm2015/sigesp.js +39 -23
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/Configuracion.d.ts +1 -0
- package/lib/core/interfaces/Presupuesto.d.ts +3 -2
- package/lib/core/models/CFG/Enterprise.model.d.ts +1 -0
- package/lib/core/models/SPG/administrativeUnit.model.d.ts +8 -5
- package/lib/sigesp.service.d.ts +2 -2
- package/package.json +1 -1
- package/sigesp.metadata.json +1 -1
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
export interface IUnitAdministrative {
|
|
2
2
|
id_empresa: number;
|
|
3
|
+
id_enterprise: number;
|
|
3
4
|
coduniadm: number;
|
|
4
5
|
coduac: number;
|
|
5
6
|
denuniadm: string;
|
|
6
7
|
estemireq: number;
|
|
7
|
-
coduniadmsig: string;
|
|
8
8
|
codcencos: string;
|
|
9
|
-
id_uniadm:
|
|
9
|
+
id_uniadm: number;
|
|
10
|
+
denuac?: string;
|
|
10
11
|
}
|
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
import { MBasicModel } from '../basic-model.model';
|
|
2
2
|
import { IUnitAdministrative } from '../../interfaces/Presupuesto';
|
|
3
3
|
export declare class MAdministrativeUnit extends MBasicModel {
|
|
4
|
-
|
|
4
|
+
idEmpresa: number;
|
|
5
|
+
idEnterprise: number;
|
|
5
6
|
codigo: number;
|
|
6
7
|
denominacion: string;
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
unidadCentral: number;
|
|
9
|
+
emiteRequisicion: number;
|
|
10
|
+
centroCosto: string;
|
|
10
11
|
id: number;
|
|
11
|
-
|
|
12
|
+
denominacionUnidadCentral: string;
|
|
13
|
+
constructor(unidad?: IUnitAdministrative);
|
|
14
|
+
dataInterface(): IUnitAdministrative;
|
|
12
15
|
}
|
package/lib/sigesp.service.d.ts
CHANGED
|
@@ -307,7 +307,7 @@ export declare class SigespService {
|
|
|
307
307
|
* @param id:idusurio o id del ecntro de costo
|
|
308
308
|
* modificado 28-12-2022
|
|
309
309
|
*/
|
|
310
|
-
getCentroCosto(tipo?: 'all' | 'one' | 'user', id?:
|
|
310
|
+
getCentroCosto(tipo?: 'all' | 'one' | 'user' | 'enter', id?: string): Observable<MCentroCosto[]>;
|
|
311
311
|
/**
|
|
312
312
|
* @description Obtiene los centros de costo
|
|
313
313
|
* @return Observable<IResponse>
|
|
@@ -605,7 +605,7 @@ export declare class SigespService {
|
|
|
605
605
|
* @actualizado: 5-12-20222
|
|
606
606
|
* @tipo
|
|
607
607
|
*/
|
|
608
|
-
getEnterprise(tipo?: 'usuario' | 'default', id?: number): Observable<IResponse>;
|
|
608
|
+
getEnterprise(tipo?: 'usuario' | 'proceso' | 'default', id?: number): Observable<IResponse>;
|
|
609
609
|
/**
|
|
610
610
|
* @description Obtiene los tipos de organizacion
|
|
611
611
|
* @return Observable<IResponse>
|