sigesp 1.1.9-20241001 → 1.1.11-20241003
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/esm2020/lib/core/interfaces/ComprobantePresupuestario.mjs +1 -1
- package/esm2020/lib/core/interfaces/Configuracion.mjs +1 -1
- package/esm2020/lib/core/interfaces/CuentaEgresos.mjs +1 -1
- package/esm2020/lib/core/interfaces/CuentaIngresoEstructura.mjs +1 -1
- package/esm2020/lib/core/interfaces/FuenteFinanciamiento.mjs +1 -1
- package/esm2020/lib/core/interfaces/Presupuesto.mjs +1 -1
- package/esm2020/lib/core/interfaces/Servicios.mjs +1 -1
- package/esm2020/lib/core/interfaces/Tributos.mjs +1 -1
- package/esm2020/lib/core/interfaces/UsuarioPrefijo.mjs +1 -1
- package/esm2020/lib/core/models/CFG/MPrefijo.model.mjs +4 -1
- package/esm2020/lib/core/models/CFG/userPrefix.model.mjs +4 -1
- package/esm2020/lib/core/models/SOC/charge.model.mjs +4 -1
- package/esm2020/lib/core/models/SOC/clause.model.mjs +4 -1
- package/esm2020/lib/core/models/SOC/clauseModality.model.mjs +4 -1
- package/esm2020/lib/core/models/SOC/configuracionSOC.model.mjs +4 -1
- package/esm2020/lib/core/models/SOC/service.model.mjs +4 -1
- package/esm2020/lib/core/models/SOC/serviceCharge.model.mjs +4 -1
- package/esm2020/lib/core/models/SOC/serviceType.model.mjs +4 -1
- package/esm2020/lib/core/models/SPG/UnidadAdministradoraCentral.mjs +4 -3
- package/esm2020/lib/core/models/SPG/administrativeUnit.model.mjs +7 -6
- package/esm2020/lib/core/models/SPG/comprobantePresupuestario.model.mjs +69 -22
- package/esm2020/lib/core/models/SPG/cuentaPresupuesto.model.mjs +5 -1
- package/esm2020/lib/core/models/SPG/expensiveAccount.model.mjs +5 -1
- package/esm2020/lib/core/models/SPG/fuenteFinanciamiento.model.mjs +4 -1
- package/esm2020/lib/core/models/SPG/incomeStructureAccount.model.mjs +5 -1
- package/esm2020/lib/sigesp.service.mjs +13 -59
- package/esm2020/public-api.mjs +2 -2
- package/fesm2015/sigesp.mjs +147 -103
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +147 -101
- package/fesm2020/sigesp.mjs.map +1 -1
- package/lib/core/interfaces/ComprobantePresupuestario.d.ts +7 -1
- package/lib/core/interfaces/Configuracion.d.ts +1 -0
- package/lib/core/interfaces/CuentaEgresos.d.ts +2 -0
- package/lib/core/interfaces/CuentaIngresoEstructura.d.ts +2 -0
- package/lib/core/interfaces/FuenteFinanciamiento.d.ts +1 -0
- package/lib/core/interfaces/Presupuesto.d.ts +6 -7
- package/lib/core/interfaces/Servicios.d.ts +6 -0
- package/lib/core/interfaces/Tributos.d.ts +1 -0
- package/lib/core/interfaces/UsuarioPrefijo.d.ts +1 -0
- package/lib/core/models/CFG/MPrefijo.model.d.ts +1 -0
- package/lib/core/models/CFG/userPrefix.model.d.ts +1 -0
- package/lib/core/models/SOC/charge.model.d.ts +1 -0
- package/lib/core/models/SOC/clause.model.d.ts +1 -0
- package/lib/core/models/SOC/clauseModality.model.d.ts +1 -0
- package/lib/core/models/SOC/configuracionSOC.model.d.ts +1 -0
- package/lib/core/models/SOC/service.model.d.ts +1 -0
- package/lib/core/models/SOC/serviceCharge.model.d.ts +1 -0
- package/lib/core/models/SOC/serviceType.model.d.ts +1 -0
- package/lib/core/models/SPG/UnidadAdministradoraCentral.d.ts +1 -0
- package/lib/core/models/SPG/administrativeUnit.model.d.ts +2 -3
- package/lib/core/models/SPG/comprobantePresupuestario.model.d.ts +8 -0
- package/lib/core/models/SPG/cuentaPresupuesto.model.d.ts +2 -0
- package/lib/core/models/SPG/expensiveAccount.model.d.ts +2 -0
- package/lib/core/models/SPG/fuenteFinanciamiento.model.d.ts +1 -0
- package/lib/core/models/SPG/incomeStructureAccount.model.d.ts +2 -0
- package/lib/sigesp.service.d.ts +5 -28
- package/package.json +1 -1
- package/public-api.d.ts +2 -2
package/fesm2020/sigesp.mjs
CHANGED
|
@@ -78,6 +78,7 @@ class MUsuarioPrefijo extends MBasicModel {
|
|
|
78
78
|
super();
|
|
79
79
|
this.idEmpresa = 0;
|
|
80
80
|
this.idEnteprise = 0;
|
|
81
|
+
this.periodoFiscal = 0;
|
|
81
82
|
this.id = 0;
|
|
82
83
|
this.idUsuario = 0;
|
|
83
84
|
this.idDtPrefijo = 0;
|
|
@@ -89,6 +90,7 @@ class MUsuarioPrefijo extends MBasicModel {
|
|
|
89
90
|
if (e) {
|
|
90
91
|
this.idEmpresa = +e.id_empresa;
|
|
91
92
|
this.idEnteprise = +e.id_enterprise;
|
|
93
|
+
this.periodoFiscal = +e.perfiscal;
|
|
92
94
|
this.id = +e.id;
|
|
93
95
|
this.idUsuario = +e.id_usuario;
|
|
94
96
|
this.idDtPrefijo = +e.id_dt_prefijo;
|
|
@@ -106,6 +108,7 @@ class MUsuarioPrefijo extends MBasicModel {
|
|
|
106
108
|
return {
|
|
107
109
|
id_empresa: this.idEmpresa.toString(),
|
|
108
110
|
id_enterprise: this.idEnteprise.toString(),
|
|
111
|
+
perfiscal: this.periodoFiscal.toString(),
|
|
109
112
|
id: this.id.toString(),
|
|
110
113
|
id_usuario: this.idUsuario.toString(),
|
|
111
114
|
id_dt_prefijo: this.idDtPrefijo.toString(),
|
|
@@ -123,6 +126,7 @@ class MPrefijo extends MBasicModel {
|
|
|
123
126
|
super();
|
|
124
127
|
this.idEmpresa = 0;
|
|
125
128
|
this.idEnterprise = 0;
|
|
129
|
+
this.periodoFiscal = 0;
|
|
126
130
|
this.id = 0;
|
|
127
131
|
this.prefijo = '';
|
|
128
132
|
this.procede = '';
|
|
@@ -139,6 +143,7 @@ class MPrefijo extends MBasicModel {
|
|
|
139
143
|
if (e) {
|
|
140
144
|
this.idEmpresa = +e.id_empresa;
|
|
141
145
|
this.idEnterprise = +e.id_enterprise;
|
|
146
|
+
this.periodoFiscal = +e.perfiscal;
|
|
142
147
|
this.id = +e.id;
|
|
143
148
|
this.prefijo = e.prefijo;
|
|
144
149
|
this.procede = e.procede;
|
|
@@ -163,6 +168,7 @@ class MPrefijo extends MBasicModel {
|
|
|
163
168
|
return {
|
|
164
169
|
id_empresa: this.idEmpresa.toString(),
|
|
165
170
|
id_enterprise: this.idEnterprise.toString(),
|
|
171
|
+
perfiscal: this.periodoFiscal.toString(),
|
|
166
172
|
id: this.id.toString(),
|
|
167
173
|
prefijo: this.prefijo,
|
|
168
174
|
procede: this.procede,
|
|
@@ -1152,6 +1158,8 @@ class MCuentaEgresos$1 extends MBasicModel {
|
|
|
1152
1158
|
constructor(cuenta, level, isNew) {
|
|
1153
1159
|
super();
|
|
1154
1160
|
this.idEmpresa = 0;
|
|
1161
|
+
this.idEnterprise = 0;
|
|
1162
|
+
this.periodoFiscal = 0;
|
|
1155
1163
|
this.nivel = 0;
|
|
1156
1164
|
this.denominacion = '';
|
|
1157
1165
|
this.cuenta = '';
|
|
@@ -1196,6 +1204,8 @@ class MCuentaEgresos$1 extends MBasicModel {
|
|
|
1196
1204
|
this.id = 0;
|
|
1197
1205
|
if (cuenta) {
|
|
1198
1206
|
this.idEmpresa = parseInt(cuenta.id_empresa);
|
|
1207
|
+
this.idEnterprise = +cuenta.id_enterprise;
|
|
1208
|
+
this.periodoFiscal = +cuenta.perfiscal;
|
|
1199
1209
|
this.nivel = parseInt(cuenta.nivel);
|
|
1200
1210
|
this.denominacion = cuenta.denspgcta;
|
|
1201
1211
|
this.cuenta = cuenta.spg_cuenta;
|
|
@@ -1617,22 +1627,6 @@ class MConfiguracionSCG extends MBasicModel {
|
|
|
1617
1627
|
}
|
|
1618
1628
|
}
|
|
1619
1629
|
|
|
1620
|
-
class MPlanUnicoCuenta extends MBasicModel {
|
|
1621
|
-
constructor(plan) {
|
|
1622
|
-
super();
|
|
1623
|
-
if (plan) {
|
|
1624
|
-
this.denominacion = plan.denominacion;
|
|
1625
|
-
this.cuenta = plan.sc_cuenta;
|
|
1626
|
-
}
|
|
1627
|
-
}
|
|
1628
|
-
dataInterface() {
|
|
1629
|
-
return {
|
|
1630
|
-
denominacion: this.denominacion,
|
|
1631
|
-
sc_cuenta: this.cuenta,
|
|
1632
|
-
};
|
|
1633
|
-
}
|
|
1634
|
-
}
|
|
1635
|
-
|
|
1636
1630
|
class IconComponent {
|
|
1637
1631
|
constructor() { }
|
|
1638
1632
|
ngOnInit() {
|
|
@@ -2025,12 +2019,14 @@ class MFuenteFinanciamiento extends MBasicModel {
|
|
|
2025
2019
|
this.explicacionFuenteFinanciamiento = '';
|
|
2026
2020
|
this.idEmpresa = '0';
|
|
2027
2021
|
this.idFuenteFinanciamiento = 0;
|
|
2022
|
+
this.periodofiscal = 0;
|
|
2028
2023
|
if (fuente) {
|
|
2029
2024
|
this.codigoFuenteFinanciamiento = fuente.codigoftefin;
|
|
2030
2025
|
this.denominacionFuenteFinanciamiento = fuente.denfuefin;
|
|
2031
2026
|
this.explicacionFuenteFinanciamiento = fuente.expfuefin;
|
|
2032
2027
|
this.idEmpresa = fuente.id_empresa;
|
|
2033
2028
|
this.idFuenteFinanciamiento = +fuente.id_fuefin;
|
|
2029
|
+
this.periodofiscal = +fuente.perfiscal;
|
|
2034
2030
|
}
|
|
2035
2031
|
else {
|
|
2036
2032
|
this.isNew = true;
|
|
@@ -2043,6 +2039,7 @@ class MFuenteFinanciamiento extends MBasicModel {
|
|
|
2043
2039
|
expfuefin: this.explicacionFuenteFinanciamiento,
|
|
2044
2040
|
id_empresa: this.idEmpresa,
|
|
2045
2041
|
id_fuefin: this.idFuenteFinanciamiento.toString(),
|
|
2042
|
+
perfiscal: this.periodofiscal.toString()
|
|
2046
2043
|
};
|
|
2047
2044
|
}
|
|
2048
2045
|
}
|
|
@@ -2051,6 +2048,8 @@ class MCuentaEgresos extends MBasicModel {
|
|
|
2051
2048
|
constructor(cuenta, level, isNew) {
|
|
2052
2049
|
super();
|
|
2053
2050
|
this.idEmpresa = 0;
|
|
2051
|
+
this.idEnterprise = 0;
|
|
2052
|
+
this.periodoFiscal = 0;
|
|
2054
2053
|
this.nivel = 0;
|
|
2055
2054
|
this.denominacion = '';
|
|
2056
2055
|
this.cuenta = '';
|
|
@@ -2095,6 +2094,8 @@ class MCuentaEgresos extends MBasicModel {
|
|
|
2095
2094
|
this.id = 0;
|
|
2096
2095
|
if (cuenta) {
|
|
2097
2096
|
this.idEmpresa = parseInt(cuenta.id_empresa);
|
|
2097
|
+
this.idEnterprise = +cuenta.id_enterprise;
|
|
2098
|
+
this.periodoFiscal = +cuenta.perfiscal;
|
|
2098
2099
|
this.nivel = parseInt(cuenta.nivel);
|
|
2099
2100
|
this.denominacion = cuenta.denspgcta;
|
|
2100
2101
|
this.cuenta = cuenta.spg_cuenta;
|
|
@@ -2530,27 +2531,74 @@ class MComprobantePresupuestarioEgresos {
|
|
|
2530
2531
|
constructor(comprobante) {
|
|
2531
2532
|
this.idEnterprise = 0;
|
|
2532
2533
|
this.idfuenteFinanciamiento = 0;
|
|
2533
|
-
this.
|
|
2534
|
-
this.
|
|
2535
|
-
this.
|
|
2536
|
-
this.
|
|
2537
|
-
this.
|
|
2538
|
-
this.
|
|
2539
|
-
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
|
|
2534
|
+
this.idCentroCosto = 0;
|
|
2535
|
+
this.idMoneda = 0;
|
|
2536
|
+
this.codigoMoneda = '';
|
|
2537
|
+
this.tasaCambio = 0;
|
|
2538
|
+
this.idTasaCambio = 0;
|
|
2539
|
+
this.montoComprobanteDivisa = 0;
|
|
2540
|
+
if (comprobante) {
|
|
2541
|
+
this.idEmpresa = parseInt(comprobante.id_empresa);
|
|
2542
|
+
this.periodoFiscal = +comprobante.perfiscal;
|
|
2543
|
+
this.idEnterprise = +comprobante.id_enterprise;
|
|
2544
|
+
this.idComprobante = parseInt(comprobante.id_comprobante);
|
|
2545
|
+
this.idEp1 = parseInt(comprobante.id_ep1);
|
|
2546
|
+
this.idEp2 = parseInt(comprobante.id_ep2);
|
|
2547
|
+
this.idEp3 = parseInt(comprobante.id_ep3);
|
|
2548
|
+
this.idEp4 = parseInt(comprobante.id_ep4);
|
|
2549
|
+
this.idEp5 = parseInt(comprobante.id_ep5);
|
|
2550
|
+
this.SPGCuenta = parseInt(comprobante.spg_cuenta);
|
|
2551
|
+
this.operacion = comprobante.operacion;
|
|
2552
|
+
this.idfuenteFinanciamiento = +comprobante.id_fuefin;
|
|
2553
|
+
this.codigoFuenteFinanciamiento = comprobante.codigoftefin;
|
|
2554
|
+
this.procede_DOC = comprobante.procede_doc;
|
|
2555
|
+
this.documento = comprobante.documento;
|
|
2556
|
+
this.codigoCentroCosto = comprobante.codcencos;
|
|
2557
|
+
this.fechaComprobante = comprobante.feccmp;
|
|
2558
|
+
this.decripcionComprobante = comprobante.descmp;
|
|
2559
|
+
this.montoComprobante = parseFloat(comprobante.moncmp);
|
|
2560
|
+
this.orden = comprobante.orden;
|
|
2561
|
+
this.numeroCompromiso = comprobante.numconcom;
|
|
2562
|
+
this.idDetalle = parseInt(comprobante.id_dt_spgcmp);
|
|
2563
|
+
this.periodoFiscal = +comprobante.perfiscal,
|
|
2564
|
+
this.idMoneda = +comprobante.id_moneda;
|
|
2565
|
+
this.idTasaCambio = +comprobante.id_tascam;
|
|
2566
|
+
this.codigoMoneda = comprobante.codmon;
|
|
2567
|
+
this.montoComprobanteDivisa = +comprobante.moncmpdiv;
|
|
2568
|
+
this.tasaCambio = +comprobante.tascam;
|
|
2569
|
+
}
|
|
2570
|
+
}
|
|
2571
|
+
dataInterface() {
|
|
2572
|
+
return {
|
|
2573
|
+
id_ep1: this.idEp1.toString(),
|
|
2574
|
+
id_ep2: this.idEp2.toString(),
|
|
2575
|
+
id_ep3: this.idEp3.toString(),
|
|
2576
|
+
id_ep4: this.idEp4.toString(),
|
|
2577
|
+
id_ep5: this.idEp5.toString(),
|
|
2578
|
+
spg_cuenta: this.SPGCuenta.toString(),
|
|
2579
|
+
operacion: this.operacion,
|
|
2580
|
+
id_fuefin: this.idfuenteFinanciamiento.toString(),
|
|
2581
|
+
codigoftefin: this.codigoFuenteFinanciamiento,
|
|
2582
|
+
documento: this.documento,
|
|
2583
|
+
id_cencos: this.idCentroCosto.toString(),
|
|
2584
|
+
codcencos: this.codigoCentroCosto,
|
|
2585
|
+
moncmp: this.montoComprobante.toString(),
|
|
2586
|
+
id_dt_spgcmp: this.idDetalle.toString(),
|
|
2587
|
+
id_empresa: this.idEmpresa.toString(),
|
|
2588
|
+
id_enterprise: this.idEnterprise.toString(),
|
|
2589
|
+
id_comprobante: this.idComprobante.toString(),
|
|
2590
|
+
numconcom: this.numeroCompromiso,
|
|
2591
|
+
orden: this.orden.toString(),
|
|
2592
|
+
descmp: this.decripcionComprobante,
|
|
2593
|
+
procede_doc: this.procede_DOC,
|
|
2594
|
+
feccmp: this.fechaComprobante,
|
|
2595
|
+
perfiscal: this.periodoFiscal.toString(),
|
|
2596
|
+
id_moneda: this.idMoneda.toString(),
|
|
2597
|
+
id_tascam: this.idTasaCambio.toString(),
|
|
2598
|
+
codmon: this.codigoMoneda,
|
|
2599
|
+
moncmpdiv: this.montoComprobanteDivisa.toString(),
|
|
2600
|
+
tascam: this.tasaCambio.toString()
|
|
2601
|
+
};
|
|
2554
2602
|
}
|
|
2555
2603
|
}
|
|
2556
2604
|
class MComprobantePresupuestarioIngresos {
|
|
@@ -2669,6 +2717,8 @@ class MCuentaIngresos extends MBasicModel {
|
|
|
2669
2717
|
class MIncomeStructureAccount {
|
|
2670
2718
|
constructor(account, level) {
|
|
2671
2719
|
this.idEmpresa = null;
|
|
2720
|
+
this.idEnterprise = null;
|
|
2721
|
+
this.periodoFiscal = null;
|
|
2672
2722
|
this.idEP1 = null;
|
|
2673
2723
|
this.idEP2 = null;
|
|
2674
2724
|
this.idEP3 = null;
|
|
@@ -2703,6 +2753,8 @@ class MIncomeStructureAccount {
|
|
|
2703
2753
|
this.distribuir = -1;
|
|
2704
2754
|
this.denominacion = '';
|
|
2705
2755
|
this.idEmpresa = parseInt(account.id_empresa);
|
|
2756
|
+
this.idEnterprise = +account.id_enterprise;
|
|
2757
|
+
this.periodoFiscal = +account.perfiscal;
|
|
2706
2758
|
this.idEP1 = account.id_ep1;
|
|
2707
2759
|
this.idEP2 = account.id_ep2;
|
|
2708
2760
|
this.idEP3 = account.id_ep3;
|
|
@@ -3343,6 +3395,7 @@ class MConfigSOC extends MBasicModel {
|
|
|
3343
3395
|
super();
|
|
3344
3396
|
this.id = 0;
|
|
3345
3397
|
this.idEnterprise = 0;
|
|
3398
|
+
this.periodoFiscal = 0;
|
|
3346
3399
|
this.companyId = 0;
|
|
3347
3400
|
this.serviceOrder = 0;
|
|
3348
3401
|
this.purchaseOrder = 0;
|
|
@@ -3358,6 +3411,7 @@ class MConfigSOC extends MBasicModel {
|
|
|
3358
3411
|
if (config) {
|
|
3359
3412
|
this.id = parseInt(config.id_soc);
|
|
3360
3413
|
this.idEnterprise = +config.id_enterprise;
|
|
3414
|
+
this.periodoFiscal = +config.perfiscal;
|
|
3361
3415
|
this.companyId = parseInt(config.id_empresa);
|
|
3362
3416
|
this.serviceOrder = parseInt(config.numordser);
|
|
3363
3417
|
this.purchaseOrder = parseInt(config.numordcom);
|
|
@@ -3384,6 +3438,7 @@ class MConfigSOC extends MBasicModel {
|
|
|
3384
3438
|
id_soc: this.id.toString(),
|
|
3385
3439
|
id_empresa: this.companyId.toString(),
|
|
3386
3440
|
id_enterprise: this.idEnterprise.toString(),
|
|
3441
|
+
perfiscal: this.periodoFiscal.toString(),
|
|
3387
3442
|
soc_bienes: this.goods.join(','),
|
|
3388
3443
|
soc_servicios: this.services.join(','),
|
|
3389
3444
|
estapesoc: this.opening ? '1' : '0',
|
|
@@ -3425,6 +3480,7 @@ class MCargo extends MBasicModel {
|
|
|
3425
3480
|
this.error = false;
|
|
3426
3481
|
this.idEmpresa = 0;
|
|
3427
3482
|
this.idEnterprise = 0;
|
|
3483
|
+
this.periodoFiscal = 0;
|
|
3428
3484
|
this.id = -1;
|
|
3429
3485
|
this.codigo = "";
|
|
3430
3486
|
this.denominacion = "";
|
|
@@ -3442,6 +3498,7 @@ class MCargo extends MBasicModel {
|
|
|
3442
3498
|
if (charge) {
|
|
3443
3499
|
this.idEmpresa = parseInt(charge.id_empresa);
|
|
3444
3500
|
this.idEnterprise = +charge.id_enterprise;
|
|
3501
|
+
this.periodoFiscal = +charge.perfiscal;
|
|
3445
3502
|
this.id = parseInt(charge.id_cargo);
|
|
3446
3503
|
this.codigo = charge.codcar;
|
|
3447
3504
|
this.denominacion = charge.dencar;
|
|
@@ -3464,6 +3521,7 @@ class MCargo extends MBasicModel {
|
|
|
3464
3521
|
interface() {
|
|
3465
3522
|
return {
|
|
3466
3523
|
id_enterprise: this.idEnterprise.toString(),
|
|
3524
|
+
perfiscal: this.periodoFiscal.toString(),
|
|
3467
3525
|
codcar: this.codigo,
|
|
3468
3526
|
codestpro: this.codigoEstructuraEgreso,
|
|
3469
3527
|
codestprospi: this.codigoEstructuraIngreso,
|
|
@@ -3596,24 +3654,24 @@ class MAdministrativeUnit extends MBasicModel {
|
|
|
3596
3654
|
super();
|
|
3597
3655
|
this.idEmpresa = 0;
|
|
3598
3656
|
this.idEnterprise = 0;
|
|
3657
|
+
this.periodoFiscal = 0;
|
|
3599
3658
|
this.codigo = '';
|
|
3600
3659
|
this.denominacion = '';
|
|
3601
|
-
this.
|
|
3660
|
+
this.idUnidadCentral = 0;
|
|
3602
3661
|
this.emiteRequisicion = true;
|
|
3603
|
-
this.idcentroCosto = 0;
|
|
3604
3662
|
this.id = 0;
|
|
3605
3663
|
this.denominacionUnidadCentral = '';
|
|
3606
3664
|
this.codigoUnidadCentral = '';
|
|
3607
|
-
this.denominacionCentroCosto = '';
|
|
3608
3665
|
this.estructuras = [];
|
|
3609
3666
|
this.centroCosto = [];
|
|
3610
3667
|
if (unidad) {
|
|
3611
3668
|
this.idEmpresa = +unidad.id_empresa;
|
|
3612
3669
|
this.idEnterprise = +unidad.id_enterprise;
|
|
3670
|
+
this.periodoFiscal = +this.periodoFiscal;
|
|
3613
3671
|
this.id = +unidad.id_uniadm;
|
|
3614
3672
|
this.codigo = unidad.coduniadm;
|
|
3615
3673
|
this.denominacion = unidad.denuniadm;
|
|
3616
|
-
this.
|
|
3674
|
+
this.idUnidadCentral = +unidad.id_uac;
|
|
3617
3675
|
this.emiteRequisicion = unidad.estemireq == '1' ? true : false;
|
|
3618
3676
|
this.denominacionUnidadCentral = unidad.denuac;
|
|
3619
3677
|
this.codigoUnidadCentral = unidad.codigouac;
|
|
@@ -3632,8 +3690,9 @@ class MAdministrativeUnit extends MBasicModel {
|
|
|
3632
3690
|
return {
|
|
3633
3691
|
id_empresa: this.idEmpresa.toString(),
|
|
3634
3692
|
id_enterprise: this.idEnterprise.toString(),
|
|
3693
|
+
perfiscal: this.periodoFiscal.toString(),
|
|
3635
3694
|
coduniadm: this.codigo,
|
|
3636
|
-
|
|
3695
|
+
id_uac: this.idUnidadCentral.toString(),
|
|
3637
3696
|
denuniadm: this.denominacion,
|
|
3638
3697
|
estemireq: this.emiteRequisicion ? '1' : '0',
|
|
3639
3698
|
id_uniadm: this.id.toString(),
|
|
@@ -3760,6 +3819,7 @@ class MServiceCharge extends MBasicModel {
|
|
|
3760
3819
|
super();
|
|
3761
3820
|
this.companyId = 0;
|
|
3762
3821
|
this.idEnterprise = 0;
|
|
3822
|
+
this.periodoFiscal = 0;
|
|
3763
3823
|
this.id = -1;
|
|
3764
3824
|
this.serviceId = 0;
|
|
3765
3825
|
this.denomination = '';
|
|
@@ -3767,6 +3827,7 @@ class MServiceCharge extends MBasicModel {
|
|
|
3767
3827
|
this.status = false;
|
|
3768
3828
|
if (ser) {
|
|
3769
3829
|
this.idEnterprise = +ser.id_enterprise;
|
|
3830
|
+
this.periodoFiscal = +ser.perfiscal;
|
|
3770
3831
|
this.companyId = parseInt(ser.id_empresa);
|
|
3771
3832
|
this.id = parseInt(ser.id_cargo);
|
|
3772
3833
|
this.serviceId = parseInt(ser.id_servicio);
|
|
@@ -3781,6 +3842,7 @@ class MServiceCharge extends MBasicModel {
|
|
|
3781
3842
|
interface() {
|
|
3782
3843
|
return {
|
|
3783
3844
|
id_enterprise: this.idEnterprise.toString(),
|
|
3845
|
+
perfiscal: this.periodoFiscal.toString(),
|
|
3784
3846
|
id_empresa: this.companyId.toString(),
|
|
3785
3847
|
id_cargo: this.id.toString(),
|
|
3786
3848
|
id_servicio: this.serviceId.toString(),
|
|
@@ -6497,7 +6559,7 @@ class SigespService {
|
|
|
6497
6559
|
* @description Actualiza el moncmp de sigesp_comprobante
|
|
6498
6560
|
*/
|
|
6499
6561
|
updateComprobanteAmount(amount, idComprobante) {
|
|
6500
|
-
return this.http.put(`${this.URL}/dao/
|
|
6562
|
+
return this.http.put(`${this.URL}/dao/sig/comprobante_dao.php?monto=true`, {
|
|
6501
6563
|
moncmp: amount,
|
|
6502
6564
|
id_comprobante: idComprobante
|
|
6503
6565
|
}, {
|
|
@@ -6934,37 +6996,19 @@ class SigespService {
|
|
|
6934
6996
|
getFuenteFinanciamiento() {
|
|
6935
6997
|
return this.http.get(`${this.URL}/dao/spg/fuente_financiamiento_dao.php`, { headers: this.getHttpHeaders() }).pipe(retry(3), catchError(this.handlerError), map((resp) => resp.data.map(element => new MFuenteFinanciamiento(element))));
|
|
6936
6998
|
}
|
|
6937
|
-
/**
|
|
6938
|
-
* @description Obtiene los centros de costo
|
|
6939
|
-
* @return Observable<MCentroCosto[]>
|
|
6940
|
-
* @author Miguel Ramírez
|
|
6941
|
-
* @param id:idusurio o id del ecntro de costo
|
|
6942
|
-
* modificado 28-12-2022
|
|
6943
|
-
*/
|
|
6944
|
-
getCentroCosto(tipo = null, id) {
|
|
6945
|
-
return this.http.get(`${this.URL}/dao/scg/centro_costo_dao.php?tipo=${tipo}&id=${id}`, { headers: this.getHttpHeaders() }).pipe(retry(3), catchError(this.handlerError), map((resp) => resp.data.map(element => new MCentroCosto(element))));
|
|
6946
|
-
}
|
|
6947
6999
|
/**
|
|
6948
7000
|
* @description Obtiene los centros de costo
|
|
6949
7001
|
* @return Observable<IResponse>
|
|
6950
|
-
*
|
|
7002
|
+
* modificado 28-12-2022
|
|
6951
7003
|
*/
|
|
6952
|
-
|
|
6953
|
-
return this.http.get(`${this.URL}/dao/scg/centro_costo_dao.php`, { headers: this.getHttpHeaders() }).pipe(
|
|
7004
|
+
getCentroCosto(tipo, idEnterprise, periodoFiscal) {
|
|
7005
|
+
return this.http.get(`${this.URL}/dao/scg/centro_costo_dao.php?tipo=${tipo}&e=${idEnterprise}&periodo=${periodoFiscal}`, { headers: this.getHttpHeaders() }).pipe(map((res) => {
|
|
6954
7006
|
if (res.success) {
|
|
6955
7007
|
res.data = res.data.map(element => new MCentroCosto(element));
|
|
6956
7008
|
}
|
|
6957
7009
|
return res;
|
|
6958
7010
|
}));
|
|
6959
7011
|
}
|
|
6960
|
-
getUserCostCenters(codigo) {
|
|
6961
|
-
return this.http.get(`${this.URL}/dao/scg/centro_costo_usuario_dao.php?codigo=${codigo}`, { headers: this.getHttpHeaders() }).pipe(retry(3), catchError(this.handlerError), map((res) => {
|
|
6962
|
-
if (res.success) {
|
|
6963
|
-
res.data = res.data.map(element => new MUsuarioCentroCosto(element));
|
|
6964
|
-
}
|
|
6965
|
-
return res;
|
|
6966
|
-
}));
|
|
6967
|
-
}
|
|
6968
7012
|
/**
|
|
6969
7013
|
* @description Abre el dialog de checkks
|
|
6970
7014
|
* @param columns Columnas que va a tener la tabla
|
|
@@ -6996,33 +7040,6 @@ class SigespService {
|
|
|
6996
7040
|
});
|
|
6997
7041
|
return dialogRef.afterClosed().toPromise();
|
|
6998
7042
|
}
|
|
6999
|
-
/**
|
|
7000
|
-
* @description Abre el dialog de las comunidades
|
|
7001
|
-
* @return Promise<MPlanUnicoCuenta>
|
|
7002
|
-
* @author Miguel Ramírez
|
|
7003
|
-
*/
|
|
7004
|
-
async openDialogPlanUnicoCuentas() {
|
|
7005
|
-
let planes = await this.getListadoPLanUnicoCuentas().toPromise();
|
|
7006
|
-
let dialogRef = this.dialog.open(CatalogoComponent, {
|
|
7007
|
-
data: {
|
|
7008
|
-
columns: ['cuenta', 'denominacion'],
|
|
7009
|
-
columnNames: ['cuenta', 'denominación'],
|
|
7010
|
-
title: 'Catálogo de Plan de Cuentas Géneral',
|
|
7011
|
-
dataSource: planes
|
|
7012
|
-
},
|
|
7013
|
-
width: '1000px',
|
|
7014
|
-
maxHeight: '90vh'
|
|
7015
|
-
});
|
|
7016
|
-
return dialogRef.afterClosed().toPromise();
|
|
7017
|
-
}
|
|
7018
|
-
/**
|
|
7019
|
-
* @description Obtiene el listado del plan único de cuentas
|
|
7020
|
-
* @return Observable<MplanUnicoCuenta[]>
|
|
7021
|
-
* @author Miguel Ramírez
|
|
7022
|
-
*/
|
|
7023
|
-
getListadoPLanUnicoCuentas() {
|
|
7024
|
-
return this.http.get(`${this.URL}/dao/scg/plan_unico_dao.php`, { headers: this.getHttpHeaders() }).pipe(retry(3), catchError(this.handlerError), map((resp) => resp.data.map(element => new MPlanUnicoCuenta(element))));
|
|
7025
|
-
}
|
|
7026
7043
|
/**
|
|
7027
7044
|
* @description Obtiene la configuración de SCG
|
|
7028
7045
|
* @return Observable<MConfiguracionSCG[]>
|
|
@@ -7324,8 +7341,8 @@ class SigespService {
|
|
|
7324
7341
|
* @return Promise<McuentaInstitucional>
|
|
7325
7342
|
* @author Miguel Ramírez
|
|
7326
7343
|
*/
|
|
7327
|
-
async openDialogCuentasInstitucionales() {
|
|
7328
|
-
let accounts = await this.getCuentasInstitucionales().toPromise();
|
|
7344
|
+
async openDialogCuentasInstitucionales(idEnterprise, periodoFical) {
|
|
7345
|
+
let accounts = await this.getCuentasInstitucionales(idEnterprise, periodoFical).toPromise();
|
|
7329
7346
|
let dialogRef = this.dialog.open(CatalogoComponent, {
|
|
7330
7347
|
data: {
|
|
7331
7348
|
columns: ['cuenta', 'denominacion'],
|
|
@@ -7343,8 +7360,8 @@ class SigespService {
|
|
|
7343
7360
|
* @return Observable<MCuentaInstitucional[]>
|
|
7344
7361
|
* @author Miguel Ramírez
|
|
7345
7362
|
*/
|
|
7346
|
-
getCuentasInstitucionales(inventory) {
|
|
7347
|
-
return this.http.get(`${this.URL}/dao/scg/cuentas_dao.php${(inventory) ? '?inventory=true' : ''}`, { headers: this.getHttpHeaders() }).pipe(retry(3), catchError(this.handlerError), map((resp) => resp.data.map(element => new MCuentaInstitucional(element))));
|
|
7363
|
+
getCuentasInstitucionales(idEnterprise, periodoFical, inventory) {
|
|
7364
|
+
return this.http.get(`${this.URL}/dao/scg/cuentas_dao.php${(inventory) ? '?inventory=true' : ''}&e=${idEnterprise}&periodo=${periodoFical}`, { headers: this.getHttpHeaders() }).pipe(retry(3), catchError(this.handlerError), map((resp) => resp.data.map(element => new MCuentaInstitucional(element))));
|
|
7348
7365
|
}
|
|
7349
7366
|
/**
|
|
7350
7367
|
* @description Abre el dialog de las cuentas de presupuesto (Recursos y Egresos)
|
|
@@ -7666,8 +7683,8 @@ class SigespService {
|
|
|
7666
7683
|
* @return Observable<MUsuarioPrefijo[]>
|
|
7667
7684
|
* @author Carlos Albornoz
|
|
7668
7685
|
*/
|
|
7669
|
-
getUserPrefix(filter = null, code = null) {
|
|
7670
|
-
return this.http.get(`${this.URL}/dao/cfg/control_numero_dao.php${filter ? `?filter=${filter}&code=${code}` : ''}`, { headers: this.getHttpHeaders() }).pipe(retry(3), catchError(this.handlerError), map((res) => {
|
|
7686
|
+
getUserPrefix(filter = null, code = null, idEnterprise, periodo) {
|
|
7687
|
+
return this.http.get(`${this.URL}/dao/cfg/control_numero_dao.php${filter ? `?filter=${filter}&code=${code}&e=${idEnterprise}&periodo=${periodo}` : ''}`, { headers: this.getHttpHeaders() }).pipe(retry(3), catchError(this.handlerError), map((res) => {
|
|
7671
7688
|
if (res.success) {
|
|
7672
7689
|
res.data = res.data.map(e => new MUsuarioPrefijo(e));
|
|
7673
7690
|
}
|
|
@@ -7803,7 +7820,7 @@ class SigespService {
|
|
|
7803
7820
|
* @author Carlos Albornoz
|
|
7804
7821
|
*/
|
|
7805
7822
|
getSigecofBanks() {
|
|
7806
|
-
return this.http.get(`${this.URL}/dao/
|
|
7823
|
+
return this.http.get(`${this.URL}/dao/cfg/banco_sigecof_dao.php`, { headers: this.getHttpHeaders() }).pipe(retry(3), catchError(this.handlerError), map((res) => {
|
|
7807
7824
|
if (res.success) {
|
|
7808
7825
|
res.data = res.data.map(e => new MSigecofBank(e));
|
|
7809
7826
|
}
|
|
@@ -9045,6 +9062,7 @@ class MUnidadAdministradoraCentral extends MBasicModel {
|
|
|
9045
9062
|
super();
|
|
9046
9063
|
this.idEmpresa = 0;
|
|
9047
9064
|
this.idEnterprise = 0;
|
|
9065
|
+
this.periodoFiscal = 0;
|
|
9048
9066
|
this.idUnidadAdministradora = 0;
|
|
9049
9067
|
this.codigoUnidadCentral = '';
|
|
9050
9068
|
this.denominacionUnidadCentral = '';
|
|
@@ -9054,9 +9072,9 @@ class MUnidadAdministradoraCentral extends MBasicModel {
|
|
|
9054
9072
|
if (e) {
|
|
9055
9073
|
this.idEmpresa = e.id_empresa;
|
|
9056
9074
|
this.idEnterprise = e.id_enterprise;
|
|
9075
|
+
this.idUnidadAdministradora = +e.id_uac;
|
|
9057
9076
|
this.codigoUnidadCentral = e.codigouac;
|
|
9058
9077
|
this.denominacionUnidadCentral = e.denuac;
|
|
9059
|
-
this.idUnidadAdministradora = +e.coduac;
|
|
9060
9078
|
this.tipoUnidad = e.tipuac == '1';
|
|
9061
9079
|
this.responsableUnidad = e.resuac;
|
|
9062
9080
|
if (e.unidad_organizativa) {
|
|
@@ -9071,7 +9089,7 @@ class MUnidadAdministradoraCentral extends MBasicModel {
|
|
|
9071
9089
|
return {
|
|
9072
9090
|
id_enterprise: this.idEnterprise,
|
|
9073
9091
|
id_empresa: this.idEmpresa,
|
|
9074
|
-
|
|
9092
|
+
id_uac: this.idUnidadAdministradora.toString(),
|
|
9075
9093
|
codigouac: this.codigoUnidadCentral,
|
|
9076
9094
|
denuac: this.denominacionUnidadCentral,
|
|
9077
9095
|
resuac: this.responsableUnidad,
|
|
@@ -9081,6 +9099,22 @@ class MUnidadAdministradoraCentral extends MBasicModel {
|
|
|
9081
9099
|
}
|
|
9082
9100
|
}
|
|
9083
9101
|
|
|
9102
|
+
class MPlanUnicoCuenta extends MBasicModel {
|
|
9103
|
+
constructor(plan) {
|
|
9104
|
+
super();
|
|
9105
|
+
if (plan) {
|
|
9106
|
+
this.denominacion = plan.denominacion;
|
|
9107
|
+
this.cuenta = plan.sc_cuenta;
|
|
9108
|
+
}
|
|
9109
|
+
}
|
|
9110
|
+
dataInterface() {
|
|
9111
|
+
return {
|
|
9112
|
+
denominacion: this.denominacion,
|
|
9113
|
+
sc_cuenta: this.cuenta,
|
|
9114
|
+
};
|
|
9115
|
+
}
|
|
9116
|
+
}
|
|
9117
|
+
|
|
9084
9118
|
class MAccountMarriage extends MBasicModel {
|
|
9085
9119
|
constructor(marriage) {
|
|
9086
9120
|
super();
|
|
@@ -9115,11 +9149,13 @@ class MServiceType extends MBasicModel {
|
|
|
9115
9149
|
this.id = -1;
|
|
9116
9150
|
this.idEmpresa = 0;
|
|
9117
9151
|
this.idEnterprise = 0;
|
|
9152
|
+
this.periodoFiscal = 0;
|
|
9118
9153
|
this.denomination = null;
|
|
9119
9154
|
this.observation = null;
|
|
9120
9155
|
if (type) {
|
|
9121
9156
|
this.idEmpresa = parseInt(type.id_empresa);
|
|
9122
9157
|
this.idEnterprise = +type.id_enterprise;
|
|
9158
|
+
this.periodoFiscal = +type.perfiscal;
|
|
9123
9159
|
this.id = parseInt(type.id_tiposervicio);
|
|
9124
9160
|
this.denomination = type.dentipser;
|
|
9125
9161
|
this.observation = type.obstipser;
|
|
@@ -9132,6 +9168,7 @@ class MServiceType extends MBasicModel {
|
|
|
9132
9168
|
return {
|
|
9133
9169
|
id_empresa: this.idEmpresa.toString(),
|
|
9134
9170
|
id_enterprise: this.idEnterprise.toString(),
|
|
9171
|
+
perfiscal: this.periodoFiscal.toString(),
|
|
9135
9172
|
dentipser: this.denomination,
|
|
9136
9173
|
id_tiposervicio: this.id.toString(),
|
|
9137
9174
|
obstipser: this.observation
|
|
@@ -9144,6 +9181,7 @@ class MService extends MBasicModel {
|
|
|
9144
9181
|
super();
|
|
9145
9182
|
this.id = -1;
|
|
9146
9183
|
this.idEnterprise = 0;
|
|
9184
|
+
this.periodoFiscal = 0;
|
|
9147
9185
|
this.code = '';
|
|
9148
9186
|
this.companyId = 0;
|
|
9149
9187
|
this.serviceTypeId = 0;
|
|
@@ -9153,6 +9191,7 @@ class MService extends MBasicModel {
|
|
|
9153
9191
|
this.charges = [];
|
|
9154
9192
|
if (service) {
|
|
9155
9193
|
this.idEnterprise = +service.id_enterprise;
|
|
9194
|
+
this.periodoFiscal = +service.perfiscal;
|
|
9156
9195
|
this.id = parseInt(service.id_servicio);
|
|
9157
9196
|
this.companyId = parseInt(service.id_empresa);
|
|
9158
9197
|
this.serviceTypeId = parseInt(service.id_tiposervicio);
|
|
@@ -9171,6 +9210,7 @@ class MService extends MBasicModel {
|
|
|
9171
9210
|
dataAsInterface() {
|
|
9172
9211
|
return {
|
|
9173
9212
|
id_enterprise: this.idEnterprise.toString(),
|
|
9213
|
+
perfiscal: this.periodoFiscal.toString(),
|
|
9174
9214
|
denser: this.denomination,
|
|
9175
9215
|
id_empresa: this.companyId.toString(),
|
|
9176
9216
|
id_servicio: this.id.toString(),
|
|
@@ -9189,11 +9229,13 @@ class MClause extends MBasicModel {
|
|
|
9189
9229
|
this.id = -1;
|
|
9190
9230
|
this.companyId = 0;
|
|
9191
9231
|
this.idEnterprise = 0;
|
|
9232
|
+
this.periodoFiscal = 0;
|
|
9192
9233
|
this.clause = '';
|
|
9193
9234
|
this.denomination = '';
|
|
9194
9235
|
if (clause) {
|
|
9195
9236
|
this.companyId = parseInt(clause.id_empresa);
|
|
9196
9237
|
this.idEnterprise = +clause.id_enterprise;
|
|
9238
|
+
this.periodoFiscal = +clause.perfiscal;
|
|
9197
9239
|
this.clause = clause.codcla;
|
|
9198
9240
|
this.denomination = clause.dencla;
|
|
9199
9241
|
this.id = parseInt(clause.id_clausula);
|
|
@@ -9206,6 +9248,7 @@ class MClause extends MBasicModel {
|
|
|
9206
9248
|
return {
|
|
9207
9249
|
codcla: this.clause,
|
|
9208
9250
|
dencla: this.denomination,
|
|
9251
|
+
perfiscal: this.periodoFiscal.toString(),
|
|
9209
9252
|
id_empresa: this.companyId ? this.companyId.toString() : null,
|
|
9210
9253
|
id_enterprise: this.idEnterprise.toString(),
|
|
9211
9254
|
id_clausula: this.id ? this.id.toString() : null
|
|
@@ -9219,11 +9262,13 @@ class MClauseModality extends MBasicModel {
|
|
|
9219
9262
|
this.id = -1;
|
|
9220
9263
|
this.companyId = 0;
|
|
9221
9264
|
this.idEnterprise = 0;
|
|
9265
|
+
this.periodoFiscal = 0;
|
|
9222
9266
|
this.code = '';
|
|
9223
9267
|
this.denomination = '';
|
|
9224
9268
|
this.clauses = [];
|
|
9225
9269
|
if (mod) {
|
|
9226
9270
|
this.idEnterprise = +mod.id_enterprise;
|
|
9271
|
+
this.periodoFiscal = +mod.perfiscal;
|
|
9227
9272
|
this.id = parseInt(mod.id_modcla);
|
|
9228
9273
|
this.companyId = parseInt(mod.id_empresa);
|
|
9229
9274
|
this.code = mod.codmodcla;
|
|
@@ -9237,6 +9282,7 @@ class MClauseModality extends MBasicModel {
|
|
|
9237
9282
|
dataAsInterface() {
|
|
9238
9283
|
return {
|
|
9239
9284
|
id_enterprise: this.idEnterprise.toString(),
|
|
9285
|
+
perfiscal: this.periodoFiscal.toString(),
|
|
9240
9286
|
clausulas: this.clauses.map((e) => e.dataAsInterface()),
|
|
9241
9287
|
codmodcla: this.code,
|
|
9242
9288
|
denmodcla: this.denomination,
|
|
@@ -14579,5 +14625,5 @@ class customPaginator extends MatPaginatorIntl {
|
|
|
14579
14625
|
* Generated bundle index. Do not edit.
|
|
14580
14626
|
*/
|
|
14581
14627
|
|
|
14582
|
-
export { Acciones, AppModule, CatalogoComponent, CatalogoDobleInputComponent, CatalogoEstructurasComponent, CausaEgreso, ConfirmComponent, ContabilizacionNomina, CurrencyService, Destino, DiasSemana, EstadoCivil, Estatus, EstatusCliente, EstatusEstudio, EstatusPersonal, EstatusPersonalNomina, EstatusPrestamo, EstatusVacaciones, Estudios, FormaPago, IconComponent, IsoCurrencyPipe, LetraRif, Longitud, MAccountMarriage, MAdministrativeUnit, MAgenciaBanco, MAllStructure, MAnticipoPrestaciones, MArchivoTxtCampo, MArchivosTxt, MAsignacionCargo, MAspectoEvaluacion, MBank, MBankAccountType, MBasicModel, MBeneficiario, MCalculoPrestacion, MCambioEstatusPersonal, MCargaFamiliar, MCargaMasiva, MCargo, MCargoEstructuraOrganizativa, MCargosAdicionales, MCargosNominas, MCargosPersonal, MCentroCosto, MCity, MClasificacionObrero, MClasification, MClause, MClauseModality, MClient, MCodigoUnicoRac, MCommunity, MComponent, MComponete, MComprobantePresupuestarioEgresos, MComprobantePresupuestarioIngresos, MComunidad, MConceptoRetencion, MConceptoVacaciones, MConceptosCXP, MConceptosNomina, MConceptosPersonalNomina, MConcursante, MConcurso, MConfigSOC, MConfigSSS, MConfiguracionFideicomiso, MConfiguracionSCG, MConfiguracionSNO, MConfigurationRPC, MConfigurationSPG, MConstanteNomina, MConstantePersonalNomina, MCountry, MCuentaBanco, MCuentaEgresos, MCuentaIngresos, MCuentaInstitucional, MCuentaPresupuesto, MCuentasSpSC, MDedicacion, MDeduction, MDeductionType, MDefinicionNomina, MDefinicionesBasicas, MDetaContable, MDetaEntrada, MDeudaAnterior, MDocument, MEmpresa, MEncargaduria, MEnterprise, MEntradaSuministros, MEscalaEvaluacion, MEscalaEvaluacionDt, MEstructuraOrganizativa, MEstructuraPresupuestariaFive, MEstructuraPresupuestariaFiveComplete, MEstructuraPresupuestariaFour, MEstructuraPresupuestariaOne, MEstructuraPresupuestariaThree, MEstructuraPresupuestariaTwo, MEstructuras, MEstudiosConcursantes, MEstudiosRealizados, MExchangeRate, MExperienciaLaboral, MFamiliaConcursante, MFamiliares, MFeriados, MFideicomiso, MFideicomisoInteres, MFideicomisoPeriodo, MFideicomisoPeriodoInteres, MFideicomisoPeriodoInteresCatalogo, MFormacionAcademica, MFormacionInformal, MFuenteFinanciamiento, MGrados, MGroup, MHojaTiempo, MHorario, MImpuestoSobreRenta, MItemsEvalucion, MLog, MMetodoBanco, MMetodos, MMoneda, MMonedaConfig, MMunicipality, MNominaSimple, MOrganizationType, MParish, MPeriodoNomina, MPeriodosPlan, MPermisos, MPersonal, MPersonalCuentaBanco, MPersonalJubilado, MPersonalNomina, MPlanHorario, MPlanUnicoCuenta, MPlantillasConstancia, MPrefijo, MPrestacionesAntiguedad, MPrestamo, MPrestamoAmortizacion, MPrestamosPeriodo, MPrevioEvaluacion, MPrevioEvaluacionDt, MPrimaGrados, MPrimasConcepto, MProcedencia, MProcesosNomina, MProveedor, MProviderBankAccount, MProviderBeneficiary, MRArchivoTXT, MRConsolidadoConceptos, MRConstanciaTrabajo, MRango, MRequisitosConcursantes, MRequisitosConcursos, MRequisitosMinimos, MResultadosEvaluacion, MRights, MSalarioHistorico, MService, MServiceCharge, MServiceType, MSigecofBank, MSistema, MSnoLog, MSolicitudEmpleo, MSpecialty, MState, MSueldoMinimo, MTablaVacaciones, MTablaVacacionesPeriodo, MTabulador, MTabuladorNominas, MTipoDepositos, MTipoDocumentoCXP, MTipoEvaluacion, MTipoEvaluacionAspecto, MTipoPersonal, MTiposEnfermedad, MTrabajoAnterior, MTrabajosConcursantes, MUbicacionFisica, MUnidadAdministradoraCentral, MUnidadTributaria, MUserDetail, MUserPermit, MUsuario,
|
|
14628
|
+
export { Acciones, AppModule, CatalogoComponent, CatalogoDobleInputComponent, CatalogoEstructurasComponent, CausaEgreso, ConfirmComponent, ContabilizacionNomina, CurrencyService, Destino, DiasSemana, EstadoCivil, Estatus, EstatusCliente, EstatusEstudio, EstatusPersonal, EstatusPersonalNomina, EstatusPrestamo, EstatusVacaciones, Estudios, FormaPago, IconComponent, IsoCurrencyPipe, LetraRif, Longitud, MAccountMarriage, MAdministrativeUnit, MAgenciaBanco, MAllStructure, MAnticipoPrestaciones, MArchivoTxtCampo, MArchivosTxt, MAsignacionCargo, MAspectoEvaluacion, MBank, MBankAccountType, MBasicModel, MBeneficiario, MCalculoPrestacion, MCambioEstatusPersonal, MCargaFamiliar, MCargaMasiva, MCargo, MCargoEstructuraOrganizativa, MCargosAdicionales, MCargosNominas, MCargosPersonal, MCentroCosto, MCity, MClasificacionObrero, MClasification, MClause, MClauseModality, MClient, MCodigoUnicoRac, MCommunity, MComponent, MComponete, MComprobantePresupuestarioEgresos, MComprobantePresupuestarioIngresos, MComunidad, MConceptoRetencion, MConceptoVacaciones, MConceptosCXP, MConceptosNomina, MConceptosPersonalNomina, MConcursante, MConcurso, MConfigSOC, MConfigSSS, MConfiguracionFideicomiso, MConfiguracionSCG, MConfiguracionSNO, MConfigurationRPC, MConfigurationSPG, MConstanteNomina, MConstantePersonalNomina, MCountry, MCuentaBanco, MCuentaEgresos, MCuentaIngresos, MCuentaInstitucional, MCuentaPresupuesto, MCuentasSpSC, MDedicacion, MDeduction, MDeductionType, MDefinicionNomina, MDefinicionesBasicas, MDetaContable, MDetaEntrada, MDeudaAnterior, MDocument, MEmpresa, MEncargaduria, MEnterprise, MEntradaSuministros, MEscalaEvaluacion, MEscalaEvaluacionDt, MEstructuraOrganizativa, MEstructuraPresupuestariaFive, MEstructuraPresupuestariaFiveComplete, MEstructuraPresupuestariaFour, MEstructuraPresupuestariaOne, MEstructuraPresupuestariaThree, MEstructuraPresupuestariaTwo, MEstructuras, MEstudiosConcursantes, MEstudiosRealizados, MExchangeRate, MExperienciaLaboral, MFamiliaConcursante, MFamiliares, MFeriados, MFideicomiso, MFideicomisoInteres, MFideicomisoPeriodo, MFideicomisoPeriodoInteres, MFideicomisoPeriodoInteresCatalogo, MFormacionAcademica, MFormacionInformal, MFuenteFinanciamiento, MGrados, MGroup, MHojaTiempo, MHorario, MImpuestoSobreRenta, MItemsEvalucion, MLog, MMetodoBanco, MMetodos, MMoneda, MMonedaConfig, MMunicipality, MNominaSimple, MOrganizationType, MParish, MPeriodoNomina, MPeriodosPlan, MPermisos, MPersonal, MPersonalCuentaBanco, MPersonalJubilado, MPersonalNomina, MPlanHorario, MPlanUnicoCuenta, MPlantillasConstancia, MPrefijo, MPrestacionesAntiguedad, MPrestamo, MPrestamoAmortizacion, MPrestamosPeriodo, MPrevioEvaluacion, MPrevioEvaluacionDt, MPrimaGrados, MPrimasConcepto, MProcedencia, MProcesosNomina, MProveedor, MProviderBankAccount, MProviderBeneficiary, MRArchivoTXT, MRConsolidadoConceptos, MRConstanciaTrabajo, MRango, MRequisitosConcursantes, MRequisitosConcursos, MRequisitosMinimos, MResultadosEvaluacion, MRights, MSalarioHistorico, MService, MServiceCharge, MServiceType, MSigecofBank, MSistema, MSnoLog, MSolicitudEmpleo, MSpecialty, MState, MSueldoMinimo, MTablaVacaciones, MTablaVacacionesPeriodo, MTabulador, MTabuladorNominas, MTipoDepositos, MTipoDocumentoCXP, MTipoEvaluacion, MTipoEvaluacionAspecto, MTipoPersonal, MTiposEnfermedad, MTrabajoAnterior, MTrabajosConcursantes, MUbicacionFisica, MUnidadAdministradoraCentral, MUnidadTributaria, MUserDetail, MUserPermit, MUsuario, MUsuarioPrefijo, MUsuarioSistema, MVacacionesPersonal, Meses, MetodosTicket, Nacionalidad, Nexofamiliar, NivelAcademico, NivelAcademicoFamiliar, Orden, Preaviso, Reporte, SalarioNormal, Sexo, Sexo2, SharedModule, SigespService, Signo, SituacionPersonal, TableSelectComponent, TipoBeneficiario, TipoCargo, TipoCestaTicket, TipoCuota, TipoDefiniciones, TipoEmpresa, TipoHorario, TipoJubilacion, TipoNomina, TipoPeriodoNomina, TipoPermiso, TipoVivienda, Turno, academico, camposConstaciaTrabajo, customPaginator };
|
|
14583
14629
|
//# sourceMappingURL=sigesp.mjs.map
|