sigesp 0.9.23-20221230 → 0.9.25-20230119

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
  }
@@ -5,8 +5,8 @@ export declare class MGrados extends MBasicModel {
5
5
  idEnterprise: number;
6
6
  idEmpresa: number;
7
7
  idTabulador: number;
8
- codigoGrado: number;
9
- codigoPaso: number;
8
+ codigoGrado: string;
9
+ codigoPaso: string;
10
10
  montoSalario: number;
11
11
  montoCompensacion: number;
12
12
  yearDesde: number;
@@ -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
  }
@@ -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.23-20221230",
3
+ "version": "0.9.25-20230119",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },