sigesp 0.9.81-20231022 → 0.9.83-20230111

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
  }
@@ -293,8 +293,8 @@ export interface ICargosPersonal {
293
293
  codubifis?: string;
294
294
  denubifis?: string;
295
295
  codtipper?: string;
296
- id_dedicacion?: string;
297
- id_tipopersonal?: string;
296
+ id_dedicacion: string;
297
+ id_tipopersonal: string;
298
298
  codcar?: string;
299
299
  descar?: string;
300
300
  codded?: string;
@@ -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,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,9 @@ 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);
25
30
  }
@@ -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.81-20231022",
3
+ "version": "0.9.83-20230111",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },