sigesp 0.9.37-20230211 → 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.
@@ -370,6 +370,9 @@ export interface IConceptos {
370
370
  orden: string;
371
371
  evaprenom: string;
372
372
  antigcomp: string;
373
+ id_uniadm: string;
374
+ coduniadm?: string;
375
+ denuniadm?: string;
373
376
  }
374
377
  export interface IConceptosPersonalNomina {
375
378
  id_enterprise: string;
@@ -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;
@@ -33,7 +33,7 @@ export interface IEmpresa {
33
33
  periodoFiscal: string;
34
34
  finPeriodoFiscal: string;
35
35
  titulo: string;
36
- presupuesto: string;
36
+ presupuesto?: string;
37
37
  }
38
38
  export interface ModuleTab {
39
39
  name: string;
@@ -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
  }
@@ -474,10 +474,11 @@ export declare class SigespService {
474
474
  */
475
475
  getMonedas(tipo: string, id?: number): Observable<MMoneda[]>;
476
476
  /**
477
- * @Description: Obtiene la tasa de cambio
477
+ * @Description: Obtiene la tasa de cambio asociadas a uno o varias monedas
478
478
  * @param tipo string
479
479
  * @param id codigo moneda
480
480
  * @returns array/null
481
+ * @tipo:all->todas, (moneda->una moneda id->id de moneda)
481
482
  */
482
483
  getCurrencyExchangeRate(tipo?: 'all' | 'moneda', id?: number): Observable<MExchangeRate[]>;
483
484
  /**
@@ -602,6 +603,9 @@ export declare class SigespService {
602
603
  * @return Observable<IResponse>
603
604
  * @author Carlos Albornoz
604
605
  * @actualizado: 4-12-20222
606
+ * @params id: id de la moneda,
607
+ * @params tipo: todas->obtiene todas las moneda, (uno-> obtiene una moneda + id)
608
+ * (mon:formato para inputCurrency + id )
605
609
  */
606
610
  getCurrentCurrency(tipo?: 'todas' | 'uno' | 'mon', id?: number): Observable<IResponse>;
607
611
  /**
@@ -609,7 +613,6 @@ export declare class SigespService {
609
613
  * @return Observable<IResponse>
610
614
  * @author Dimaly Crespo
611
615
  * @actualizado: 5-12-20222
612
- * @tipo
613
616
  */
614
617
  getEnterprise(tipo?: 'usuario' | 'proceso' | 'default', id?: number): Observable<IResponse>;
615
618
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigesp",
3
- "version": "0.9.37-20230211",
3
+ "version": "0.9.39-20230321",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },