sigesp 1.1.25-20241118 → 1.1.27-20240512

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.
@@ -495,6 +495,7 @@ export interface ICodigoUnicoRac {
495
495
  }
496
496
  export interface ICargoOrganigrama {
497
497
  id_empresa: string;
498
+ id_enterprise: string;
498
499
  id_carper: string;
499
500
  id_organigrama: string;
500
501
  id_personal: string;
@@ -509,10 +510,11 @@ export interface ICargoOrganigrama {
509
510
  denominacion?: string;
510
511
  coduniadm?: string;
511
512
  denuniadm?: string;
512
- codigo_estructura?: string;
513
+ estructura?: string;
513
514
  }
514
515
  export interface ICargoNomina {
515
516
  id_empresa: string;
517
+ id_enterprise: string;
516
518
  id_carper: string;
517
519
  id_nomina: string;
518
520
  id_dt_carnom: string;
@@ -800,7 +800,6 @@ export interface IGrados {
800
800
  aniodes: string;
801
801
  aniohas: string;
802
802
  id_dt_grado: string;
803
- detalles_prima: IPrimaGrados[];
804
803
  }
805
804
  export interface IPrimaGrados {
806
805
  id_enterprise: string;
@@ -1081,12 +1080,15 @@ export interface IEstructuraOrganizativa {
1081
1080
  nivel: string;
1082
1081
  nivpad: string;
1083
1082
  codcencos: string;
1083
+ dencencos: string;
1084
1084
  id_ep1: string;
1085
1085
  id_ep2: string;
1086
1086
  id_ep3: string;
1087
1087
  id_ep4: string;
1088
1088
  id_ep5: string;
1089
+ estructura: string;
1089
1090
  codpadre: string;
1091
+ denpadre: string;
1090
1092
  codpai: string;
1091
1093
  despai: string;
1092
1094
  codest: string;
@@ -39,6 +39,7 @@ export declare class MAsignacionCargo extends MBasicModel {
39
39
  }
40
40
  export declare class MCargoEstructuraOrganizativa extends MBasicModel {
41
41
  idEmpresa: number;
42
+ idEnterprise: number;
42
43
  idCargoPersonal: number;
43
44
  codigoCargo: string;
44
45
  descripcionCargo: string;
@@ -60,6 +61,7 @@ export declare class MCargoEstructuraOrganizativa extends MBasicModel {
60
61
  export declare class MCargosNominas extends MBasicModel {
61
62
  idEmpresa: number;
62
63
  idNomina: number;
64
+ idEnterprise: number;
63
65
  idCargo: number;
64
66
  codigoNomina: string;
65
67
  denominacionNomina: string;
@@ -9,12 +9,14 @@ export declare class MEstructuraOrganizativa extends MBasicModel {
9
9
  nivel: number;
10
10
  nivelPadre: number;
11
11
  codigoCentroCosto: string;
12
+ denominacionCentroCosto: string;
12
13
  idEp1: number;
13
14
  idEp2: number;
14
15
  idEp3: number;
15
16
  idEp4: number;
16
17
  idEp5: number;
17
18
  codigoPadre: string;
19
+ denominacionPadre: string;
18
20
  codigoPais: string;
19
21
  nombrePais: string;
20
22
  codigoEstado: string;
@@ -38,6 +40,7 @@ export declare class MEstructuraOrganizativa extends MBasicModel {
38
40
  codigoUnidadAdministrativa: string;
39
41
  denominacionUnidadAdministraiva: string;
40
42
  idCentroCosto: number;
43
+ estructura: string;
41
44
  constructor(e?: IEstructuraOrganizativa);
42
45
  dataInterface(): IEstructuraOrganizativa;
43
46
  }
@@ -555,8 +555,8 @@ export declare class SigespService {
555
555
  */
556
556
  getDeductionTypes(): Observable<IResponse>;
557
557
  getIncomeAccounts(tipo: string, idEnterprise: number, periodoFiscal: number, nivel?: number, idEP?: number, estatus?: string): Observable<any>;
558
- getCharges(): Observable<IResponse>;
559
- getDeductions(): Observable<IResponse>;
558
+ getCharges(idEnterprise: number): Observable<IResponse>;
559
+ getDeductions(idEnterprise: number): Observable<IResponse>;
560
560
  /**
561
561
  * @description Obtiene la los datos de Empresa
562
562
  * @return Observable<IResponse>
@@ -570,7 +570,7 @@ export declare class SigespService {
570
570
  * @author Dimaly Crespo
571
571
  * @date 20-07-2021
572
572
  */
573
- getTiposDocumetos(): Observable<IResponse>;
573
+ getTiposDocumetos(idEnterprise: number): Observable<IResponse>;
574
574
  /**
575
575
  * @param get toma los valores: [ idOrdenCompra ,'recepcion','existen','codigo', 'ordenesSOC', 'op', 'art' ]
576
576
  * @param n codigo Documento Orden, se usa para obtener los detalles de la orden de compra, es obligatorio al combinar con la opcion get: idOrdenCompra
@@ -590,20 +590,20 @@ export declare class SigespService {
590
590
  * @author Dimaly Crespo
591
591
  * @date 20-07-2021
592
592
  */
593
- getConceptosCxP(): Observable<any>;
593
+ getConceptosCxP(idEnterprise: number): Observable<any>;
594
594
  /**
595
595
  * @description Obtiene los los conceptos Retencion ISRL
596
596
  * @return Observable<IResponse>
597
597
  * @author Dimaly Crespo
598
598
  * @date 26-07-2021
599
599
  */
600
- getConceptosRetencion(): Observable<any>;
600
+ getConceptosRetencion(tipo: string, idTipoDeduccion: number): Observable<any>;
601
601
  /**
602
602
  * @description Obtiene la configuración de RRHH y de SNO
603
603
  * @return Observable<IResponse>
604
604
  * @author Dimaly Crespo
605
605
  */
606
- obtenerConfiguracionSNO(): Observable<any>;
606
+ obtenerConfiguracionSNO(idEnterprise: number): Observable<any>;
607
607
  /**
608
608
  *
609
609
  * @param tipo ['default', 'uno', 'cargos','linea'] dafault:Todas las nominas, uno: una nomina,
@@ -616,7 +616,7 @@ export declare class SigespService {
616
616
  * @actualizado 26-05-2024
617
617
  *
618
618
  */
619
- getNomina(tipo: string, id?: number, act?: number): Observable<any>;
619
+ getNomina(tipo: string, idEnterprise: number, id?: number, act?: number): Observable<any>;
620
620
  /**
621
621
  * @description Obtiene los cargos de las nomina
622
622
  * @param tipo ['codigo','default'] ->codigo: obtiene el proximo codigo. ->default: obtiene todos los cargos de la nomina
@@ -629,13 +629,13 @@ export declare class SigespService {
629
629
  * @return Observable<IResponse>
630
630
  * @author Dimaly Crespo
631
631
  */
632
- getPersonalSRH(tipo: string, id?: number): Observable<any>;
632
+ getPersonalSRH(tipo: string, idEnterprise: number, id?: number): Observable<any>;
633
633
  /**
634
634
  * @description Obtiene las agencia de banco
635
635
  * @return Observable<IResponse>
636
636
  * @author Dimaly Crespo
637
637
  */
638
- getAgenciaBanco(tipo: string, id?: number): Observable<any>;
638
+ getAgenciaBanco(tipo: string, idEnterprise?: number, id?: number): Observable<any>;
639
639
  /**
640
640
  * @description Obtiene la hojas de tiempo
641
641
  * @return Observable<IResponse>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigesp",
3
- "version": "1.1.25-20241118",
3
+ "version": "1.1.27-20240512",
4
4
  "dependencies": {
5
5
  "tslib": "^2.6.2"
6
6
  },
@@ -28,4 +28,4 @@
28
28
  }
29
29
  },
30
30
  "sideEffects": false
31
- }
31
+ }