sigesp 0.9.85-20231103 → 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.
- package/bundles/sigesp.umd.js +223 -123
- package/bundles/sigesp.umd.js.map +1 -1
- package/bundles/sigesp.umd.min.js +1 -1
- package/bundles/sigesp.umd.min.js.map +1 -1
- package/esm2015/lib/core/interfaces/Banco.js +1 -1
- package/esm2015/lib/core/interfaces/Tributos.js +1 -1
- package/esm2015/lib/core/models/STB/MCargosAdicionales.js +62 -0
- package/esm2015/lib/sigesp.service.js +45 -8
- package/esm2015/public-api.js +2 -1
- package/fesm2015/sigesp.js +220 -122
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/Banco.d.ts +3 -0
- package/lib/core/interfaces/Tributos.d.ts +17 -0
- package/lib/core/models/STB/MCargosAdicionales.d.ts +22 -0
- package/lib/sigesp.service.d.ts +22 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -1
- package/sigesp.metadata.json +1 -1
|
@@ -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
|
+
}
|
package/lib/sigesp.service.d.ts
CHANGED
|
@@ -389,8 +389,21 @@ export declare class SigespService {
|
|
|
389
389
|
* @author Miguel Ramírez
|
|
390
390
|
*/
|
|
391
391
|
onlyNumbers(event?: any): boolean;
|
|
392
|
+
/**
|
|
393
|
+
* @description Acepta solo numero, delete y backspace
|
|
394
|
+
* @param event Evento del teclado
|
|
395
|
+
* @return boolean
|
|
396
|
+
* @author Dimaly Crespo
|
|
397
|
+
*/
|
|
392
398
|
onlyNumbers2(event?: any): boolean;
|
|
393
399
|
/**
|
|
400
|
+
* @description Acepta solo numero,guiones, parentesis,espacios
|
|
401
|
+
* @param event Evento del teclado
|
|
402
|
+
* @return boolean
|
|
403
|
+
* @author Dimaly Crespo
|
|
404
|
+
*/
|
|
405
|
+
typeNumbersHyphen(event?: any): boolean;
|
|
406
|
+
/**
|
|
394
407
|
* @description Permite (a-z A-Z á-ú ñÑ üÜ ',.) que se escriban numeros en el input (Usar en keypress)
|
|
395
408
|
* @param event Evento del teclado
|
|
396
409
|
* @return boolean
|
|
@@ -1013,6 +1026,15 @@ export declare class SigespService {
|
|
|
1013
1026
|
* @date 23-11-2022
|
|
1014
1027
|
*/
|
|
1015
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>;
|
|
1016
1038
|
}
|
|
1017
1039
|
interface filtroCuentasPresupuesto {
|
|
1018
1040
|
tipo?: 'E' | 'R';
|
package/package.json
CHANGED
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';
|