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.
@@ -20,4 +20,6 @@ export interface ICuentaInstitucional {
20
20
  id_empresa?: string;
21
21
  nivel?: string;
22
22
  referencia?: string;
23
+ denctareferecia?: string;
24
+ dencueproacu?: string;
23
25
  }
@@ -1,5 +1,6 @@
1
1
  import { ICuentaIngresos } from '../../interfaces/CuentaIngreso';
2
- export declare class MCuentaIngresos {
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
- export declare class MAccountMarriage {
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: IAccountMarriage);
7
+ constructor(marriage?: IAccountMarriage);
8
+ dataInterface(): IAccountMarriage;
7
9
  }
@@ -1,5 +1,6 @@
1
1
  import { ICuentaInstitucional } from '../../interfaces/CuentaInstitucional';
2
- export declare class MCuentaInstitucional {
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
- constructor(institucional: ICuentaInstitucional);
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
- export declare class MPlanUnicoCuenta {
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: IPlanUnicoCuenta);
6
+ constructor(plan?: IPlanUnicoCuenta);
7
+ dataInterface(): IPlanUnicoCuenta;
6
8
  }
@@ -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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigesp",
3
- "version": "0.9.82-20231024",
3
+ "version": "0.9.84-20231102",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },