sigesp 0.9.82-20231024 → 0.9.84-20231102
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 +204 -111
- 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/CuentaInstitucional.js +1 -1
- package/esm2015/lib/core/models/SCG/IncomeAccount.js +4 -2
- package/esm2015/lib/core/models/SCG/accountMarriage.model.js +16 -5
- package/esm2015/lib/core/models/SCG/cuentaInstitucional.model.js +83 -23
- package/esm2015/lib/core/models/SCG/planUnicoCuenta.model.js +14 -4
- package/esm2015/lib/sigesp.service.js +7 -1
- package/fesm2015/sigesp.js +115 -30
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/CuentaInstitucional.d.ts +2 -0
- package/lib/core/models/SCG/IncomeAccount.d.ts +2 -1
- package/lib/core/models/SCG/accountMarriage.model.d.ts +4 -2
- package/lib/core/models/SCG/cuentaInstitucional.model.d.ts +8 -2
- package/lib/core/models/SCG/planUnicoCuenta.model.d.ts +4 -2
- package/lib/sigesp.service.d.ts +1 -0
- package/package.json +1 -1
- package/sigesp.metadata.json +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ICuentaIngresos } from '../../interfaces/CuentaIngreso';
|
|
2
|
-
|
|
2
|
+
import { MBasicModel } from '../basic-model.model';
|
|
3
|
+
export declare class MCuentaIngresos extends MBasicModel {
|
|
3
4
|
idEmpresa: number;
|
|
4
5
|
nivel: number;
|
|
5
6
|
denominacion: string;
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { IAccountMarriage } from '../../interfaces/Integracion';
|
|
2
|
-
|
|
2
|
+
import { MBasicModel } from '../basic-model.model';
|
|
3
|
+
export declare class MAccountMarriage extends MBasicModel {
|
|
3
4
|
idEmpresa: number;
|
|
4
5
|
cuentaContable: number;
|
|
5
6
|
cuentaInstitucional: number;
|
|
6
|
-
constructor(marriage
|
|
7
|
+
constructor(marriage?: IAccountMarriage);
|
|
8
|
+
dataInterface(): IAccountMarriage;
|
|
7
9
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ICuentaInstitucional } from '../../interfaces/CuentaInstitucional';
|
|
2
|
-
|
|
2
|
+
import { MBasicModel } from '../basic-model.model';
|
|
3
|
+
export declare class MCuentaInstitucional extends MBasicModel {
|
|
3
4
|
cuenta: string;
|
|
4
5
|
cueproacu: string;
|
|
5
6
|
denominacion: string;
|
|
@@ -21,5 +22,10 @@ export declare class MCuentaInstitucional {
|
|
|
21
22
|
idEmpresa: string;
|
|
22
23
|
nivel: string;
|
|
23
24
|
referencia: string;
|
|
24
|
-
|
|
25
|
+
denominacionCuentaProvisionAcumulada: string;
|
|
26
|
+
denominacionCuentaReferencia: string;
|
|
27
|
+
denominacionEstatus: string;
|
|
28
|
+
isNew: boolean;
|
|
29
|
+
constructor(institucional?: ICuentaInstitucional);
|
|
30
|
+
dataInterface(): ICuentaInstitucional;
|
|
25
31
|
}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { IPlanUnicoCuenta } from '../../interfaces/PlanUnicoCuenta';
|
|
2
|
-
|
|
2
|
+
import { MBasicModel } from '../basic-model.model';
|
|
3
|
+
export declare class MPlanUnicoCuenta extends MBasicModel {
|
|
3
4
|
denominacion: string;
|
|
4
5
|
cuenta: string;
|
|
5
|
-
constructor(plan
|
|
6
|
+
constructor(plan?: IPlanUnicoCuenta);
|
|
7
|
+
dataInterface(): IPlanUnicoCuenta;
|
|
6
8
|
}
|
package/lib/sigesp.service.d.ts
CHANGED
|
@@ -389,6 +389,7 @@ export declare class SigespService {
|
|
|
389
389
|
* @author Miguel Ramírez
|
|
390
390
|
*/
|
|
391
391
|
onlyNumbers(event?: any): boolean;
|
|
392
|
+
onlyNumbers2(event?: any): boolean;
|
|
392
393
|
/**
|
|
393
394
|
* @description Permite (a-z A-Z á-ú ñÑ üÜ ',.) que se escriban numeros en el input (Usar en keypress)
|
|
394
395
|
* @param event Evento del teclado
|