sigesp 0.9.25-20230119 → 0.9.26-20230203
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 +17 -10
- 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/sigesp.service.js +8 -1
- package/esm2015/public-api.js +1 -1
- package/esm2015/sigesp.js +11 -11
- package/fesm2015/sigesp.js +8 -1
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/CuentaEgresos.d.ts +25 -0
- package/lib/sigesp.service.d.ts +6 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/sigesp.d.ts +16 -16
- package/sigesp.metadata.json +1 -1
|
@@ -56,6 +56,31 @@ export interface IUpdateDistribution {
|
|
|
56
56
|
asignado: number;
|
|
57
57
|
distribuir: number;
|
|
58
58
|
}
|
|
59
|
+
export interface IUpdateDistribution2 {
|
|
60
|
+
spg_cuenta: string;
|
|
61
|
+
id_ep1: number;
|
|
62
|
+
id_ep2: number;
|
|
63
|
+
id_ep3: number;
|
|
64
|
+
id_ep4: number;
|
|
65
|
+
id_ep5: number;
|
|
66
|
+
enero: number;
|
|
67
|
+
febrero: number;
|
|
68
|
+
marzo: number;
|
|
69
|
+
abril: number;
|
|
70
|
+
mayo: number;
|
|
71
|
+
junio: number;
|
|
72
|
+
julio: number;
|
|
73
|
+
agosto: number;
|
|
74
|
+
septiembre: number;
|
|
75
|
+
octubre: number;
|
|
76
|
+
noviembre: number;
|
|
77
|
+
diciembre: number;
|
|
78
|
+
asignado: number;
|
|
79
|
+
distribuir: number;
|
|
80
|
+
nivel: number;
|
|
81
|
+
referencia: string;
|
|
82
|
+
status: number;
|
|
83
|
+
}
|
|
59
84
|
export interface IUpdateDistributionIngresos {
|
|
60
85
|
spi_cuenta: string;
|
|
61
86
|
enero: number;
|
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, IUpdateDistributionIngresos } from './core/interfaces/CuentaEgresos';
|
|
22
|
+
import { IUpdateDistribution, IUpdateDistribution2, IUpdateDistributionIngresos } 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';
|
|
@@ -74,6 +74,11 @@ export declare class SigespService {
|
|
|
74
74
|
*/
|
|
75
75
|
updateDistributionExpenseAccount(distribution: IUpdateDistribution): Observable<any>;
|
|
76
76
|
/**
|
|
77
|
+
* @Actualiza la distribución de la cuenta de egreso
|
|
78
|
+
* @param distribution
|
|
79
|
+
*/
|
|
80
|
+
updateDistributionExpenseAccount2(distribution: IUpdateDistribution2[]): Observable<any>;
|
|
81
|
+
/**
|
|
77
82
|
* @Actualiza la distribución de la cuenta de Ingreso
|
|
78
83
|
* @param distribution
|
|
79
84
|
*/
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -148,3 +148,4 @@ export { ISnoLog } from './lib/core/interfaces/Auditoria';
|
|
|
148
148
|
export { IDetaEntrada, IEntradaSuministros, IDetaContable } from './lib/core/interfaces/EntradaSuministro';
|
|
149
149
|
export { ITipoDepositos } from './lib/core/interfaces/ITipoDepositos';
|
|
150
150
|
export { ICatalogo, ISelect, ISelect1, ISelect5, ISelect3, ISelect4, filterData, TipoDefiniciones, EstadoCivil, Sexo, Sexo2, NivelAcademico, Turno, SituacionPersonal, CausaEgreso, EstatusPersonal, EstatusPersonalNomina, Estatus, EstatusEstudio, TipoVivienda, LetraRif, Estudios, academico, TipoEmpresa, TipoPermiso, Nexofamiliar, NivelAcademicoFamiliar, TipoBeneficiario, Nacionalidad, FormaPago, EstatusVacaciones, TipoPeriodoNomina, TipoNomina, ContabilizacionNomina, Destino, TipoHorario, TipoCuota, Acciones, Preaviso, Orden, Longitud, Meses, TipoJubilacion, camposConstaciaTrabajo, MetodosTicket, EstatusPrestamo, ISelect7, } from './lib/core/interfaces/Constantes';
|
|
151
|
+
export { IUpdateDistribution2, IUpdateDistribution } from './lib/core/interfaces/CuentaEgresos';
|
package/sigesp.d.ts
CHANGED
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
* Generated bundle index. Do not edit.
|
|
3
3
|
*/
|
|
4
4
|
export * from './public-api';
|
|
5
|
-
export { AppComponent as
|
|
6
|
-
export { ICatalogo as
|
|
5
|
+
export { AppComponent as ɵg } from './lib/app/app.component';
|
|
6
|
+
export { ICatalogo as ɵj } from './lib/core/interfaces/Catalogo';
|
|
7
7
|
export { IComprobantePresupuestarioEgresos as ɵv, IComprobantePresupuestarioIngresos as ɵw } from './lib/core/interfaces/ComprobantePresupuestario';
|
|
8
|
-
export { IComunidad as
|
|
8
|
+
export { IComunidad as ɵr } from './lib/core/interfaces/Comunidad';
|
|
9
9
|
export { IConfiguracionSCG as ɵy } from './lib/core/interfaces/ConfiguracionSCG';
|
|
10
10
|
export { IConfigurationSPG as ɵba } from './lib/core/interfaces/ConfigurationSPG';
|
|
11
|
-
export { ICuentaEgresos as
|
|
11
|
+
export { ICuentaEgresos as ɵf } from './lib/core/interfaces/CuentaEgresos';
|
|
12
12
|
export { ICuentaInstitucional as ɵx } from './lib/core/interfaces/CuentaInstitucional';
|
|
13
|
-
export { ICuentaPresupuesto as
|
|
13
|
+
export { ICuentaPresupuesto as ɵt } from './lib/core/interfaces/CuentaPresupuesto';
|
|
14
14
|
export { IEstructuraPresupuestariaFiveComplete as ɵb } from './lib/core/interfaces/EstructuraPresupuestaria';
|
|
15
|
-
export { IFuenteFinanciamiento as
|
|
15
|
+
export { IFuenteFinanciamiento as ɵu } from './lib/core/interfaces/FuenteFinanciamiento';
|
|
16
16
|
export { IAccountMarriage as ɵbb } from './lib/core/interfaces/Integracion';
|
|
17
17
|
export { ICommunity as ɵc } from './lib/core/interfaces/Lugares';
|
|
18
18
|
export { IMoneda as ɵbd, IMonedaConfig as ɵbe } from './lib/core/interfaces/Moneda';
|
|
@@ -20,13 +20,13 @@ export { ICargoNomina as ɵe, ICargoOrganigrama as ɵd } from './lib/core/interf
|
|
|
20
20
|
export { IPlanUnicoCuenta as ɵz } from './lib/core/interfaces/PlanUnicoCuenta';
|
|
21
21
|
export { IUnidadTributaria as ɵbc } from './lib/core/interfaces/UnidadTributaria';
|
|
22
22
|
export { IUsuario as ɵa } from './lib/core/interfaces/Usuario';
|
|
23
|
-
export { IUsuarioPrefijo as
|
|
24
|
-
export { CatalogoDobleInputComponent as
|
|
25
|
-
export { CatalogoEstructurasComponent as
|
|
26
|
-
export { CatalogoComponent as
|
|
27
|
-
export { ConfirmComponent as
|
|
28
|
-
export { IconComponent as
|
|
29
|
-
export { TableSelectComponent as
|
|
30
|
-
export { CustonMaterialModule as
|
|
31
|
-
export { IsoCurrencyPipe as
|
|
32
|
-
export { SharedModule as
|
|
23
|
+
export { IUsuarioPrefijo as ɵs } from './lib/core/interfaces/UsuarioPrefijo';
|
|
24
|
+
export { CatalogoDobleInputComponent as ɵo } from './lib/shared/components/catalogo-doble-input/catalogo-doble-input.component';
|
|
25
|
+
export { CatalogoEstructurasComponent as ɵn } from './lib/shared/components/catalogo-estructuras/catalogo-estructuras.component';
|
|
26
|
+
export { CatalogoComponent as ɵi } from './lib/shared/components/catalogo/catalogo.component';
|
|
27
|
+
export { ConfirmComponent as ɵk } from './lib/shared/components/confirm/confirm.component';
|
|
28
|
+
export { IconComponent as ɵl } from './lib/shared/components/icon/icon.component';
|
|
29
|
+
export { TableSelectComponent as ɵm } from './lib/shared/components/table-select/table-select.component';
|
|
30
|
+
export { CustonMaterialModule as ɵq } from './lib/shared/material/material.module';
|
|
31
|
+
export { IsoCurrencyPipe as ɵp } from './lib/shared/pipes/iso-currency.pipe';
|
|
32
|
+
export { SharedModule as ɵh } from './lib/shared/shared.module';
|