sigesp 1.1.24-20241113 → 1.1.26-20241119

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.
@@ -24,6 +24,8 @@ export interface IUserDetail {
24
24
  pwdusu: string;
25
25
  telusu: string;
26
26
  usuadm: string;
27
+ ultcon: string;
28
+ id_personal: string;
27
29
  derechos?: IRights[];
28
30
  }
29
31
  export interface IGroup {
@@ -21,6 +21,8 @@ export declare class MUserDetail extends MBasicModel {
21
21
  telephone: string;
22
22
  admin: boolean;
23
23
  rights: MRights[];
24
+ ultcon: string;
25
+ id_personal: number;
24
26
  constructor(user?: IUserDetail);
25
27
  turnToInterface(): IUserDetail;
26
28
  }
@@ -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.24-20241113",
3
+ "version": "1.1.26-20241119",
4
4
  "dependencies": {
5
5
  "tslib": "^2.6.2"
6
6
  },