sigesp 0.9.86-20231105 → 0.9.87-20231113

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.
@@ -487,6 +487,9 @@ export interface IIntegracion {
487
487
  disponibilidad: string;
488
488
  codope: string;
489
489
  estatus: string;
490
+ cedrifcli: string;
491
+ codigo: string;
492
+ id_cliente: string;
490
493
  }
491
494
  export interface IConciliacion {
492
495
  id_empresa: string;
@@ -46,3 +46,20 @@ export interface IConceptoRetencion {
46
46
  desact: string;
47
47
  obsconret: string;
48
48
  }
49
+ export interface ICargoAdicional {
50
+ id_empresa: string;
51
+ id_cargoadi: string;
52
+ codcar: string;
53
+ dencar: string;
54
+ codestpre: string;
55
+ porcar: string;
56
+ formula: string;
57
+ tipo: string;
58
+ cuenta: string;
59
+ id_ep1: string;
60
+ id_ep2: string;
61
+ id_ep3: string;
62
+ id_ep4: string;
63
+ id_ep5: string;
64
+ dencuenta: string;
65
+ }
@@ -0,0 +1,22 @@
1
+ import { ICargoAdicional } from "../../interfaces/Tributos";
2
+ export declare class MCargosAdicionales {
3
+ isNew: boolean;
4
+ error: boolean;
5
+ idEmpresa: number;
6
+ id: number;
7
+ codigo: string;
8
+ denominacion: string;
9
+ codigoEstruraPresupuestaria: string;
10
+ porcentaje: number;
11
+ formula: string;
12
+ tipo: number;
13
+ cuenta: string;
14
+ idEp1: number;
15
+ idEp2: number;
16
+ idEp3: number;
17
+ idEp4: number;
18
+ idEp5: number;
19
+ denominacionCuenta: string;
20
+ constructor(charge?: ICargoAdicional);
21
+ dataInterface(): ICargoAdicional;
22
+ }
@@ -1026,6 +1026,15 @@ export declare class SigespService {
1026
1026
  * @date 23-11-2022
1027
1027
  */
1028
1028
  getDepositType(procede: string, idArticulo: number, idUsuario?: number): Observable<any>;
1029
+ /**
1030
+ * @description Obtiene Cargos Adicionales *
1031
+ * @param tipo : one,default
1032
+ * @param id : id del cargo
1033
+ * @returns
1034
+ * @author Dimaly Crespo
1035
+ * @date 13-11-2022
1036
+ */
1037
+ getCargosAdicionales(tipo: string, id?: number): Observable<any>;
1029
1038
  }
1030
1039
  interface filtroCuentasPresupuesto {
1031
1040
  tipo?: 'E' | 'R';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigesp",
3
- "version": "0.9.86-20231105",
3
+ "version": "0.9.87-20231113",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },
package/public-api.d.ts CHANGED
@@ -43,6 +43,7 @@ export { MServiceCharge } from './lib/core/models/SOC/serviceCharge.model';
43
43
  export { MUnidadTributaria } from './lib/core/models/STB/unidadTributaria.model';
44
44
  export { MDeduction, MConceptoRetencion } from './lib/core/models/STB/deduction.model';
45
45
  export { MDeductionType } from './lib/core/models/STB/deductionType.model';
46
+ export { MCargosAdicionales, } from './lib/core/models/STB/MCargosAdicionales';
46
47
  export { MMoneda, MMonedaConfig, } from './lib/core/models/CFG/moneda.model';
47
48
  export { MClient } from './lib/core/models/SFV/MClienteModel';
48
49
  export { MUsuario } from './lib/core/models/SSS/user.model';
@@ -136,7 +137,7 @@ export { ICountry, IMunicipality, IParish, IState, ICity } from './lib/core/inte
136
137
  export { IBank, IBankAccountType, ISigecofBank, IAgencia, ICuentaBanco, ICartaOrden, IMovimientoBanco, IConfigBanco, IConceptoMovimiento, IControlDocumento, IConciliacion, IChequera, ICuentasSpSc, IDetalle, IDivisas, IMovimiento, ICatalogoIntegracion, IDetalleConciliacion, IDetalleMovimiento, IDetalleSpgSpi, IDetallesContable, IIntegracion, IMovimientoBancoConciliar, ISelect2, ITipoFondoAvance, ITrasferencia, IVoucherMedidas } from './lib/core/interfaces/Banco';
137
138
  export { IConfigurationRPC } from './lib/core/interfaces/ConfiguracionRPC';
138
139
  export { IServiceType, IService, IClause, IConfigSOC, IClauseModality, IServiceCharges } from './lib/core/interfaces/Servicios';
139
- export { IDeductionType, ICargo, IDeduction, IConceptoRetencion, } from './lib/core/interfaces/Tributos';
140
+ export { IDeductionType, ICargo, IDeduction, IConceptoRetencion, ICargoAdicional, } from './lib/core/interfaces/Tributos';
140
141
  export { customPaginator } from './lib/shared/material/customPaginator';
141
142
  export { ICuentaIngresos } from './lib/core/interfaces/CuentaIngreso';
142
143
  export { IConfigSSS, IUserDetail, IGroup, IComponent, IRights, IUserPermit, ILog, } from './lib/core/interfaces/Seguridad';