sigesp 1.1.33-20241215 → 1.1.34-20241216

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.
@@ -263,6 +263,10 @@ export interface IPersonalNomina {
263
263
  apeper: string;
264
264
  id_planhor: string;
265
265
  tipcar: string;
266
+ suenorfij: string;
267
+ suenorvar: string;
268
+ suenorbon: string;
269
+ suenorbonfin: string;
266
270
  racnom?: string;
267
271
  situacion?: string;
268
272
  monpen?: string;
@@ -329,7 +333,6 @@ export interface IConceptos {
329
333
  sigcon: string;
330
334
  forcon: string;
331
335
  id_cencos: string;
332
- codcencos: string;
333
336
  glocon: string;
334
337
  concon: string;
335
338
  spg_cuentacon: string;
@@ -374,10 +377,16 @@ export interface IConceptos {
374
377
  antigcomp: string;
375
378
  id_uniadm: string;
376
379
  id_constante: string;
380
+ id_fuefin: string;
377
381
  perben: string;
378
382
  coduniadm?: string;
379
383
  denuniadm?: string;
384
+ codigoftefin?: string;
385
+ denfuefin?: string;
380
386
  estructura?: string;
387
+ codcencos?: string;
388
+ dencencos?: string;
389
+ denctapre?: string;
381
390
  }
382
391
  export interface IConceptosPersonalNomina {
383
392
  id_enterprise: string;
@@ -12,6 +12,7 @@ export declare class MConceptosNomina extends MBasicModel {
12
12
  formulaConceptos: string;
13
13
  idCentroCosto: number;
14
14
  codigoCentroCosto: string;
15
+ denominacionCentroCosto: string;
15
16
  conceptoGlobal: number;
16
17
  condicionConcepto: string;
17
18
  spgCuentaConcepto: string;
@@ -62,6 +63,10 @@ export declare class MConceptosNomina extends MBasicModel {
62
63
  codigoUnidadAdministrativa: string;
63
64
  denominacionUnidadAdministraiva: string;
64
65
  perteneceBeneficiario: number;
66
+ idFuenteFinanciamiento: number;
67
+ codigoFueteFinanciamiento: string;
68
+ denominacionFueteFinanciamiento: string;
69
+ denominacionCuentaPresupuesto: string;
65
70
  constructor(e?: IConceptos);
66
71
  dataInterface(): IConceptos;
67
72
  denominacionSigno(sig: string): string;
@@ -93,6 +93,10 @@ export declare class MPersonalNomina extends MBasicModel {
93
93
  tipoCargo: string;
94
94
  denominacionTipoCargo: string;
95
95
  TipoCargo: import("../../interfaces/Constantes").ISelect[];
96
+ sueldoNormalFijo: number;
97
+ sueldoNormalVariable: number;
98
+ sueldoNormalBonoVacaciones: number;
99
+ sueldoNormalBonoFinAnio: number;
96
100
  constructor(e?: IPersonalNomina);
97
101
  dataInterface(): IPersonalNomina;
98
102
  }
@@ -93,7 +93,7 @@ export declare class SigespService {
93
93
  * @param id de la estructura el idEp3 o idEp5
94
94
  * @return Observable<MCuentaEgresos[]>
95
95
  */
96
- planInstitucionalSPG(tipo: string, idEnterprise: number, periodoFiscal: number, idEP3o5: number, nivel: number): Observable<MCuentaEgresos[]>;
96
+ planInstitucionalSPG(tipo: string, idEnterprise: number, periodoFiscal: number, idEP3o5: number, nivel: number, estatus?: string): Observable<MCuentaEgresos[]>;
97
97
  /**
98
98
  * @description Abre el catálogo de estructura presupuesaria
99
99
  * @param data Data que se va a mostrar
@@ -330,13 +330,17 @@ export declare class SigespService {
330
330
  * @return Promise<MCuentaPresupuesto>
331
331
  * @author Miguel Ramírez
332
332
  */
333
- openDialogCuentasPresupuesto(): Promise<MCuentaPresupuesto>;
333
+ openDialogCuentasPresupuesto(idEnterprise: number, periodoFiscal: number): Promise<MCuentaPresupuesto>;
334
334
  /**
335
335
  * @description Obtiene las cuentas de recursos y egresos
336
336
  * @return Observable<MCuentaPresupuesto>
337
337
  * @author Miguel Ramírez
338
+ * @param filter {numero,sno,C,egreso,ingreso}
339
+ * @param idEnterprise
340
+ * @param peridoFiscal
341
+ * @returns
338
342
  */
339
- getCuentasPresupuesto(filter?: string): Observable<MCuentaPresupuesto[]>;
343
+ getCuentasPresupuesto(idEnterprise: number, peridoFiscal: number, filter?: string): Observable<MCuentaPresupuesto[]>;
340
344
  /**
341
345
  * @description Abre el cátalogo de cuentas de la tabla "spg_cuentas"
342
346
  * @returns Promise<MCuentaEgresos>
@@ -351,7 +355,7 @@ export declare class SigespService {
351
355
  * @author Carlos Albornoz
352
356
  * @params filtro: Indica bajo que parametros se va a filtrar el catalogo
353
357
  */
354
- openCatalogoCuentasPresuspuesto(titulo: string, filtro?: filtroCuentasPresupuesto, ancho?: string): Promise<MCuentaPresupuesto>;
358
+ openCatalogoCuentasPresuspuesto(titulo: string, idEnterprise: number, periodoFiscal: number, filtro?: filtroCuentasPresupuesto, ancho?: string): Promise<MCuentaPresupuesto>;
355
359
  /**
356
360
  * @description Abre el cátalogo de cuentas de la tabla "spi_cuentas"
357
361
  * @returns Promise<MCuentaIngresos>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigesp",
3
- "version": "1.1.33-20241215",
3
+ "version": "1.1.34-20241216",
4
4
  "dependencies": {
5
5
  "tslib": "^2.6.2"
6
6
  },