sigesp 0.9.29-20230204 → 0.9.31-23230208
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 +12 -2
- 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/CuentaEgresos.js +1 -1
- package/esm2015/lib/core/interfaces/Usuario.js +1 -1
- package/esm2015/lib/sigesp.service.js +12 -3
- package/fesm2015/sigesp.js +11 -2
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/CuentaEgresos.d.ts +22 -0
- package/lib/core/interfaces/Usuario.d.ts +1 -0
- package/lib/sigesp.service.d.ts +3 -2
- package/package.json +1 -1
- package/sigesp.metadata.json +1 -1
|
@@ -104,3 +104,25 @@ export interface IUpdateDistributionIngresos {
|
|
|
104
104
|
id_ep4?: number;
|
|
105
105
|
id_ep5?: number;
|
|
106
106
|
}
|
|
107
|
+
export interface IUpdateDistributionIngresos2 {
|
|
108
|
+
spi_cuenta: string;
|
|
109
|
+
enero: number;
|
|
110
|
+
febrero: number;
|
|
111
|
+
marzo: number;
|
|
112
|
+
abril: number;
|
|
113
|
+
mayo: number;
|
|
114
|
+
junio: number;
|
|
115
|
+
julio: number;
|
|
116
|
+
agosto: number;
|
|
117
|
+
septiembre: number;
|
|
118
|
+
octubre: number;
|
|
119
|
+
noviembre: number;
|
|
120
|
+
diciembre: number;
|
|
121
|
+
previsto: number;
|
|
122
|
+
distribuir: number;
|
|
123
|
+
id_ep1?: number;
|
|
124
|
+
id_ep2?: number;
|
|
125
|
+
id_ep3?: number;
|
|
126
|
+
id_ep4?: number;
|
|
127
|
+
id_ep5?: number;
|
|
128
|
+
}
|
package/lib/sigesp.service.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ import { IEstructuraPresupuestariaOne, IEstructuraPresupuestariaTwo, IEstructura
|
|
|
19
19
|
import { MCentroCosto } from './core/models/SCG/centroCosto.model';
|
|
20
20
|
import { MFuenteFinanciamiento } from './core/models/SPG/fuenteFinanciamiento.model';
|
|
21
21
|
import { MCuentaEgresos } from './core/models/SPG/expensiveAccount.model';
|
|
22
|
-
import { IUpdateDistribution, IUpdateDistribution2, IUpdateDistributionIngresos } from './core/interfaces/CuentaEgresos';
|
|
22
|
+
import { IUpdateDistribution, IUpdateDistribution2, IUpdateDistributionIngresos, IUpdateDistributionIngresos2 } from './core/interfaces/CuentaEgresos';
|
|
23
23
|
import { MSistema } from './core/models/SSS/sistema';
|
|
24
24
|
import { IComprobantePresupuestarioEgresos, IComprobantePresupuestarioIngresos } from './core/interfaces/ComprobantePresupuestario';
|
|
25
25
|
import { MComprobantePresupuestarioEgresos, MComprobantePresupuestarioIngresos } from './core/models/SPG/comprobantePresupuestario.model';
|
|
@@ -83,6 +83,7 @@ export declare class SigespService {
|
|
|
83
83
|
* @param distribution
|
|
84
84
|
*/
|
|
85
85
|
updateDistributionIncomeAccount(distribution: IUpdateDistributionIngresos): Observable<IResponse>;
|
|
86
|
+
updateDistributionIncomeAccount2(distribution: IUpdateDistributionIngresos2[]): Observable<IResponse>;
|
|
86
87
|
/**
|
|
87
88
|
* @Actualiza la distribución de la cuenta de Ingreso de Estructura
|
|
88
89
|
* @param distribution
|
|
@@ -602,7 +603,7 @@ export declare class SigespService {
|
|
|
602
603
|
* @author Carlos Albornoz
|
|
603
604
|
* @actualizado: 4-12-20222
|
|
604
605
|
*/
|
|
605
|
-
getCurrentCurrency(): Observable<IResponse>;
|
|
606
|
+
getCurrentCurrency(tipo?: 'todas' | 'uno' | 'mon', id?: number): Observable<IResponse>;
|
|
606
607
|
/**
|
|
607
608
|
* @description Obtiene la linea empresa
|
|
608
609
|
* @return Observable<IResponse>
|