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.
@@ -51,6 +51,7 @@ export interface IEnterprise {
51
51
  sc_cuenta_pasivo_diferido: string;
52
52
  sc_cuenta_ant: string;
53
53
  spi_cuenta_sobrante: string;
54
+ diafecven: string;
54
55
  }
55
56
  export interface IProcedencia {
56
57
  procede: string;
@@ -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: string;
9
+ id_uniadm: number;
10
+ denuac?: string;
10
11
  }
@@ -18,6 +18,7 @@ export declare class MEnterprise extends MBasicModel {
18
18
  cuentaPasivoDiferido: string;
19
19
  cuentAnterior: string;
20
20
  cuentSobrante: string;
21
+ diaFechaVencimiento: number;
21
22
  constructor(e?: IEnterprise);
22
23
  dataInterface(): IEnterprise;
23
24
  }
@@ -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
- id_empresa: number;
4
+ idEmpresa: number;
5
+ idEnterprise: number;
5
6
  codigo: number;
6
7
  denominacion: string;
7
- unidadcentral: number;
8
- emitereq: number;
9
- centrocosto: string;
8
+ unidadCentral: number;
9
+ emiteRequisicion: number;
10
+ centroCosto: string;
10
11
  id: number;
11
- constructor(unidad: IUnitAdministrative);
12
+ denominacionUnidadCentral: string;
13
+ constructor(unidad?: IUnitAdministrative);
14
+ dataInterface(): IUnitAdministrative;
12
15
  }
@@ -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?: number): Observable<MCentroCosto[]>;
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>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigesp",
3
- "version": "0.9.22-20221229",
3
+ "version": "0.9.24-20230111",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },