sigesp 0.9.13-20221217 → 0.9.14-20221218
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 +35 -16
- 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/Configuracion.js +1 -1
- package/esm2015/lib/core/interfaces/Moneda.js +1 -1
- package/esm2015/lib/core/models/CFG/TasaCambio.model.js +4 -1
- package/esm2015/lib/core/models/CFG/moneda.model.js +42 -0
- package/esm2015/lib/core/models/SPG/configurationSPG.model.js +2 -2
- package/esm2015/lib/sigesp.service.js +2 -2
- package/esm2015/lib/validation.service.js +1 -1
- package/esm2015/public-api.js +2 -2
- package/fesm2015/sigesp.js +31 -14
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/Configuracion.d.ts +1 -0
- package/lib/core/models/CFG/TasaCambio.model.d.ts +1 -0
- package/lib/core/models/{STB → CFG}/moneda.model.d.ts +4 -2
- package/lib/core/models/SPG/configurationSPG.model.d.ts +1 -1
- package/lib/sigesp.service.d.ts +1 -1
- package/lib/validation.service.d.ts +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -1
- package/sigesp.metadata.json +1 -1
- package/esm2015/lib/core/models/STB/moneda.model.js +0 -27
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { IMoneda, IMonedaConfig } from '../../interfaces/Moneda';
|
|
2
|
+
import { MBasicModel } from '../basic-model.model';
|
|
2
3
|
export declare class MMoneda {
|
|
3
4
|
codigo: string;
|
|
4
5
|
denominacion: string;
|
|
@@ -6,7 +7,7 @@ export declare class MMoneda {
|
|
|
6
7
|
simbolo: string;
|
|
7
8
|
constructor(moneda: IMoneda);
|
|
8
9
|
}
|
|
9
|
-
export declare class MMonedaConfig {
|
|
10
|
+
export declare class MMonedaConfig extends MBasicModel {
|
|
10
11
|
codigo: string;
|
|
11
12
|
denominacion: string;
|
|
12
13
|
codigoIso: string;
|
|
@@ -14,5 +15,6 @@ export declare class MMonedaConfig {
|
|
|
14
15
|
separadorDecimal: string;
|
|
15
16
|
separadorMiles: string;
|
|
16
17
|
decimales: number;
|
|
17
|
-
constructor(moneda
|
|
18
|
+
constructor(moneda?: IMonedaConfig);
|
|
19
|
+
dataInterface(): IMonedaConfig;
|
|
18
20
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IConfigurationSPG } from '../../interfaces/ConfigurationSPG';
|
|
2
|
-
import { MMonedaConfig } from '../
|
|
2
|
+
import { MMonedaConfig } from '../CFG/moneda.model';
|
|
3
3
|
export declare class MConfigurationSPG {
|
|
4
4
|
cuentasPresupuestoCedentes: string;
|
|
5
5
|
cunetasPresupuestoRecaudadores: string;
|
package/lib/sigesp.service.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { MatDialog } from '@angular/material/dialog';
|
|
|
6
6
|
import { filterData } from './core/interfaces/Catalogo';
|
|
7
7
|
import { MCuentaPresupuesto } from './core/models/SPG/cuentaPresupuesto.model';
|
|
8
8
|
import { MCuentaInstitucional } from './core/models/SCG/cuentaInstitucional.model';
|
|
9
|
-
import { MMoneda } from './core/models/
|
|
9
|
+
import { MMoneda } from './core/models/CFG/moneda.model';
|
|
10
10
|
import { ToastrService } from 'ngx-toastr';
|
|
11
11
|
import { MUnidadTributaria } from './core/models/STB/unidadTributaria.model';
|
|
12
12
|
import { AbstractControl, FormGroup } from '@angular/forms';
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -43,7 +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 { MMoneda, MMonedaConfig, } from './lib/core/models/
|
|
46
|
+
export { MMoneda, MMonedaConfig, } from './lib/core/models/CFG/moneda.model';
|
|
47
47
|
export { MUsuario } from './lib/core/models/SSS/user.model';
|
|
48
48
|
export { MConfigSSS } from './lib/core/models/SSS/securityConfiguration.model';
|
|
49
49
|
export { MUserDetail } from './lib/core/models/SSS/userDetail.model';
|