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/fesm2015/sigesp.mjs
CHANGED
|
@@ -79,6 +79,7 @@ class MUsuarioPrefijo extends MBasicModel {
|
|
|
79
79
|
super();
|
|
80
80
|
this.idEmpresa = 0;
|
|
81
81
|
this.idEnteprise = 0;
|
|
82
|
+
this.periodoFiscal = 0;
|
|
82
83
|
this.id = 0;
|
|
83
84
|
this.idUsuario = 0;
|
|
84
85
|
this.idDtPrefijo = 0;
|
|
@@ -90,6 +91,7 @@ class MUsuarioPrefijo extends MBasicModel {
|
|
|
90
91
|
if (e) {
|
|
91
92
|
this.idEmpresa = +e.id_empresa;
|
|
92
93
|
this.idEnteprise = +e.id_enterprise;
|
|
94
|
+
this.periodoFiscal = +e.perfiscal;
|
|
93
95
|
this.id = +e.id;
|
|
94
96
|
this.idUsuario = +e.id_usuario;
|
|
95
97
|
this.idDtPrefijo = +e.id_dt_prefijo;
|
|
@@ -107,6 +109,7 @@ class MUsuarioPrefijo extends MBasicModel {
|
|
|
107
109
|
return {
|
|
108
110
|
id_empresa: this.idEmpresa.toString(),
|
|
109
111
|
id_enterprise: this.idEnteprise.toString(),
|
|
112
|
+
perfiscal: this.periodoFiscal.toString(),
|
|
110
113
|
id: this.id.toString(),
|
|
111
114
|
id_usuario: this.idUsuario.toString(),
|
|
112
115
|
id_dt_prefijo: this.idDtPrefijo.toString(),
|
|
@@ -124,6 +127,7 @@ class MPrefijo extends MBasicModel {
|
|
|
124
127
|
super();
|
|
125
128
|
this.idEmpresa = 0;
|
|
126
129
|
this.idEnterprise = 0;
|
|
130
|
+
this.periodoFiscal = 0;
|
|
127
131
|
this.id = 0;
|
|
128
132
|
this.prefijo = '';
|
|
129
133
|
this.procede = '';
|
|
@@ -140,6 +144,7 @@ class MPrefijo extends MBasicModel {
|
|
|
140
144
|
if (e) {
|
|
141
145
|
this.idEmpresa = +e.id_empresa;
|
|
142
146
|
this.idEnterprise = +e.id_enterprise;
|
|
147
|
+
this.periodoFiscal = +e.perfiscal;
|
|
143
148
|
this.id = +e.id;
|
|
144
149
|
this.prefijo = e.prefijo;
|
|
145
150
|
this.procede = e.procede;
|
|
@@ -164,6 +169,7 @@ class MPrefijo extends MBasicModel {
|
|
|
164
169
|
return {
|
|
165
170
|
id_empresa: this.idEmpresa.toString(),
|
|
166
171
|
id_enterprise: this.idEnterprise.toString(),
|
|
172
|
+
perfiscal: this.periodoFiscal.toString(),
|
|
167
173
|
id: this.id.toString(),
|
|
168
174
|
prefijo: this.prefijo,
|
|
169
175
|
procede: this.procede,
|
|
@@ -1155,6 +1161,8 @@ class MCuentaEgresos$1 extends MBasicModel {
|
|
|
1155
1161
|
constructor(cuenta, level, isNew) {
|
|
1156
1162
|
super();
|
|
1157
1163
|
this.idEmpresa = 0;
|
|
1164
|
+
this.idEnterprise = 0;
|
|
1165
|
+
this.periodoFiscal = 0;
|
|
1158
1166
|
this.nivel = 0;
|
|
1159
1167
|
this.denominacion = '';
|
|
1160
1168
|
this.cuenta = '';
|
|
@@ -1199,6 +1207,8 @@ class MCuentaEgresos$1 extends MBasicModel {
|
|
|
1199
1207
|
this.id = 0;
|
|
1200
1208
|
if (cuenta) {
|
|
1201
1209
|
this.idEmpresa = parseInt(cuenta.id_empresa);
|
|
1210
|
+
this.idEnterprise = +cuenta.id_enterprise;
|
|
1211
|
+
this.periodoFiscal = +cuenta.perfiscal;
|
|
1202
1212
|
this.nivel = parseInt(cuenta.nivel);
|
|
1203
1213
|
this.denominacion = cuenta.denspgcta;
|
|
1204
1214
|
this.cuenta = cuenta.spg_cuenta;
|
|
@@ -1622,22 +1632,6 @@ class MConfiguracionSCG extends MBasicModel {
|
|
|
1622
1632
|
}
|
|
1623
1633
|
}
|
|
1624
1634
|
|
|
1625
|
-
class MPlanUnicoCuenta extends MBasicModel {
|
|
1626
|
-
constructor(plan) {
|
|
1627
|
-
super();
|
|
1628
|
-
if (plan) {
|
|
1629
|
-
this.denominacion = plan.denominacion;
|
|
1630
|
-
this.cuenta = plan.sc_cuenta;
|
|
1631
|
-
}
|
|
1632
|
-
}
|
|
1633
|
-
dataInterface() {
|
|
1634
|
-
return {
|
|
1635
|
-
denominacion: this.denominacion,
|
|
1636
|
-
sc_cuenta: this.cuenta,
|
|
1637
|
-
};
|
|
1638
|
-
}
|
|
1639
|
-
}
|
|
1640
|
-
|
|
1641
1635
|
class IconComponent {
|
|
1642
1636
|
constructor() { }
|
|
1643
1637
|
ngOnInit() {
|
|
@@ -2032,12 +2026,14 @@ class MFuenteFinanciamiento extends MBasicModel {
|
|
|
2032
2026
|
this.explicacionFuenteFinanciamiento = '';
|
|
2033
2027
|
this.idEmpresa = '0';
|
|
2034
2028
|
this.idFuenteFinanciamiento = 0;
|
|
2029
|
+
this.periodofiscal = 0;
|
|
2035
2030
|
if (fuente) {
|
|
2036
2031
|
this.codigoFuenteFinanciamiento = fuente.codigoftefin;
|
|
2037
2032
|
this.denominacionFuenteFinanciamiento = fuente.denfuefin;
|
|
2038
2033
|
this.explicacionFuenteFinanciamiento = fuente.expfuefin;
|
|
2039
2034
|
this.idEmpresa = fuente.id_empresa;
|
|
2040
2035
|
this.idFuenteFinanciamiento = +fuente.id_fuefin;
|
|
2036
|
+
this.periodofiscal = +fuente.perfiscal;
|
|
2041
2037
|
}
|
|
2042
2038
|
else {
|
|
2043
2039
|
this.isNew = true;
|
|
@@ -2050,6 +2046,7 @@ class MFuenteFinanciamiento extends MBasicModel {
|
|
|
2050
2046
|
expfuefin: this.explicacionFuenteFinanciamiento,
|
|
2051
2047
|
id_empresa: this.idEmpresa,
|
|
2052
2048
|
id_fuefin: this.idFuenteFinanciamiento.toString(),
|
|
2049
|
+
perfiscal: this.periodofiscal.toString()
|
|
2053
2050
|
};
|
|
2054
2051
|
}
|
|
2055
2052
|
}
|
|
@@ -2058,6 +2055,8 @@ class MCuentaEgresos extends MBasicModel {
|
|
|
2058
2055
|
constructor(cuenta, level, isNew) {
|
|
2059
2056
|
super();
|
|
2060
2057
|
this.idEmpresa = 0;
|
|
2058
|
+
this.idEnterprise = 0;
|
|
2059
|
+
this.periodoFiscal = 0;
|
|
2061
2060
|
this.nivel = 0;
|
|
2062
2061
|
this.denominacion = '';
|
|
2063
2062
|
this.cuenta = '';
|
|
@@ -2102,6 +2101,8 @@ class MCuentaEgresos extends MBasicModel {
|
|
|
2102
2101
|
this.id = 0;
|
|
2103
2102
|
if (cuenta) {
|
|
2104
2103
|
this.idEmpresa = parseInt(cuenta.id_empresa);
|
|
2104
|
+
this.idEnterprise = +cuenta.id_enterprise;
|
|
2105
|
+
this.periodoFiscal = +cuenta.perfiscal;
|
|
2105
2106
|
this.nivel = parseInt(cuenta.nivel);
|
|
2106
2107
|
this.denominacion = cuenta.denspgcta;
|
|
2107
2108
|
this.cuenta = cuenta.spg_cuenta;
|
|
@@ -2541,27 +2542,74 @@ class MComprobantePresupuestarioEgresos {
|
|
|
2541
2542
|
constructor(comprobante) {
|
|
2542
2543
|
this.idEnterprise = 0;
|
|
2543
2544
|
this.idfuenteFinanciamiento = 0;
|
|
2544
|
-
this.
|
|
2545
|
-
this.
|
|
2546
|
-
this.
|
|
2547
|
-
this.
|
|
2548
|
-
this.
|
|
2549
|
-
this.
|
|
2550
|
-
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
|
|
2564
|
-
|
|
2545
|
+
this.idCentroCosto = 0;
|
|
2546
|
+
this.idMoneda = 0;
|
|
2547
|
+
this.codigoMoneda = '';
|
|
2548
|
+
this.tasaCambio = 0;
|
|
2549
|
+
this.idTasaCambio = 0;
|
|
2550
|
+
this.montoComprobanteDivisa = 0;
|
|
2551
|
+
if (comprobante) {
|
|
2552
|
+
this.idEmpresa = parseInt(comprobante.id_empresa);
|
|
2553
|
+
this.periodoFiscal = +comprobante.perfiscal;
|
|
2554
|
+
this.idEnterprise = +comprobante.id_enterprise;
|
|
2555
|
+
this.idComprobante = parseInt(comprobante.id_comprobante);
|
|
2556
|
+
this.idEp1 = parseInt(comprobante.id_ep1);
|
|
2557
|
+
this.idEp2 = parseInt(comprobante.id_ep2);
|
|
2558
|
+
this.idEp3 = parseInt(comprobante.id_ep3);
|
|
2559
|
+
this.idEp4 = parseInt(comprobante.id_ep4);
|
|
2560
|
+
this.idEp5 = parseInt(comprobante.id_ep5);
|
|
2561
|
+
this.SPGCuenta = parseInt(comprobante.spg_cuenta);
|
|
2562
|
+
this.operacion = comprobante.operacion;
|
|
2563
|
+
this.idfuenteFinanciamiento = +comprobante.id_fuefin;
|
|
2564
|
+
this.codigoFuenteFinanciamiento = comprobante.codigoftefin;
|
|
2565
|
+
this.procede_DOC = comprobante.procede_doc;
|
|
2566
|
+
this.documento = comprobante.documento;
|
|
2567
|
+
this.codigoCentroCosto = comprobante.codcencos;
|
|
2568
|
+
this.fechaComprobante = comprobante.feccmp;
|
|
2569
|
+
this.decripcionComprobante = comprobante.descmp;
|
|
2570
|
+
this.montoComprobante = parseFloat(comprobante.moncmp);
|
|
2571
|
+
this.orden = comprobante.orden;
|
|
2572
|
+
this.numeroCompromiso = comprobante.numconcom;
|
|
2573
|
+
this.idDetalle = parseInt(comprobante.id_dt_spgcmp);
|
|
2574
|
+
this.periodoFiscal = +comprobante.perfiscal,
|
|
2575
|
+
this.idMoneda = +comprobante.id_moneda;
|
|
2576
|
+
this.idTasaCambio = +comprobante.id_tascam;
|
|
2577
|
+
this.codigoMoneda = comprobante.codmon;
|
|
2578
|
+
this.montoComprobanteDivisa = +comprobante.moncmpdiv;
|
|
2579
|
+
this.tasaCambio = +comprobante.tascam;
|
|
2580
|
+
}
|
|
2581
|
+
}
|
|
2582
|
+
dataInterface() {
|
|
2583
|
+
return {
|
|
2584
|
+
id_ep1: this.idEp1.toString(),
|
|
2585
|
+
id_ep2: this.idEp2.toString(),
|
|
2586
|
+
id_ep3: this.idEp3.toString(),
|
|
2587
|
+
id_ep4: this.idEp4.toString(),
|
|
2588
|
+
id_ep5: this.idEp5.toString(),
|
|
2589
|
+
spg_cuenta: this.SPGCuenta.toString(),
|
|
2590
|
+
operacion: this.operacion,
|
|
2591
|
+
id_fuefin: this.idfuenteFinanciamiento.toString(),
|
|
2592
|
+
codigoftefin: this.codigoFuenteFinanciamiento,
|
|
2593
|
+
documento: this.documento,
|
|
2594
|
+
id_cencos: this.idCentroCosto.toString(),
|
|
2595
|
+
codcencos: this.codigoCentroCosto,
|
|
2596
|
+
moncmp: this.montoComprobante.toString(),
|
|
2597
|
+
id_dt_spgcmp: this.idDetalle.toString(),
|
|
2598
|
+
id_empresa: this.idEmpresa.toString(),
|
|
2599
|
+
id_enterprise: this.idEnterprise.toString(),
|
|
2600
|
+
id_comprobante: this.idComprobante.toString(),
|
|
2601
|
+
numconcom: this.numeroCompromiso,
|
|
2602
|
+
orden: this.orden.toString(),
|
|
2603
|
+
descmp: this.decripcionComprobante,
|
|
2604
|
+
procede_doc: this.procede_DOC,
|
|
2605
|
+
feccmp: this.fechaComprobante,
|
|
2606
|
+
perfiscal: this.periodoFiscal.toString(),
|
|
2607
|
+
id_moneda: this.idMoneda.toString(),
|
|
2608
|
+
id_tascam: this.idTasaCambio.toString(),
|
|
2609
|
+
codmon: this.codigoMoneda,
|
|
2610
|
+
moncmpdiv: this.montoComprobanteDivisa.toString(),
|
|
2611
|
+
tascam: this.tasaCambio.toString()
|
|
2612
|
+
};
|
|
2565
2613
|
}
|
|
2566
2614
|
}
|
|
2567
2615
|
class MComprobantePresupuestarioIngresos {
|
|
@@ -2680,6 +2728,8 @@ class MCuentaIngresos extends MBasicModel {
|
|
|
2680
2728
|
class MIncomeStructureAccount {
|
|
2681
2729
|
constructor(account, level) {
|
|
2682
2730
|
this.idEmpresa = null;
|
|
2731
|
+
this.idEnterprise = null;
|
|
2732
|
+
this.periodoFiscal = null;
|
|
2683
2733
|
this.idEP1 = null;
|
|
2684
2734
|
this.idEP2 = null;
|
|
2685
2735
|
this.idEP3 = null;
|
|
@@ -2714,6 +2764,8 @@ class MIncomeStructureAccount {
|
|
|
2714
2764
|
this.distribuir = -1;
|
|
2715
2765
|
this.denominacion = '';
|
|
2716
2766
|
this.idEmpresa = parseInt(account.id_empresa);
|
|
2767
|
+
this.idEnterprise = +account.id_enterprise;
|
|
2768
|
+
this.periodoFiscal = +account.perfiscal;
|
|
2717
2769
|
this.idEP1 = account.id_ep1;
|
|
2718
2770
|
this.idEP2 = account.id_ep2;
|
|
2719
2771
|
this.idEP3 = account.id_ep3;
|
|
@@ -3354,6 +3406,7 @@ class MConfigSOC extends MBasicModel {
|
|
|
3354
3406
|
super();
|
|
3355
3407
|
this.id = 0;
|
|
3356
3408
|
this.idEnterprise = 0;
|
|
3409
|
+
this.periodoFiscal = 0;
|
|
3357
3410
|
this.companyId = 0;
|
|
3358
3411
|
this.serviceOrder = 0;
|
|
3359
3412
|
this.purchaseOrder = 0;
|
|
@@ -3369,6 +3422,7 @@ class MConfigSOC extends MBasicModel {
|
|
|
3369
3422
|
if (config) {
|
|
3370
3423
|
this.id = parseInt(config.id_soc);
|
|
3371
3424
|
this.idEnterprise = +config.id_enterprise;
|
|
3425
|
+
this.periodoFiscal = +config.perfiscal;
|
|
3372
3426
|
this.companyId = parseInt(config.id_empresa);
|
|
3373
3427
|
this.serviceOrder = parseInt(config.numordser);
|
|
3374
3428
|
this.purchaseOrder = parseInt(config.numordcom);
|
|
@@ -3395,6 +3449,7 @@ class MConfigSOC extends MBasicModel {
|
|
|
3395
3449
|
id_soc: this.id.toString(),
|
|
3396
3450
|
id_empresa: this.companyId.toString(),
|
|
3397
3451
|
id_enterprise: this.idEnterprise.toString(),
|
|
3452
|
+
perfiscal: this.periodoFiscal.toString(),
|
|
3398
3453
|
soc_bienes: this.goods.join(','),
|
|
3399
3454
|
soc_servicios: this.services.join(','),
|
|
3400
3455
|
estapesoc: this.opening ? '1' : '0',
|
|
@@ -3436,6 +3491,7 @@ class MCargo extends MBasicModel {
|
|
|
3436
3491
|
this.error = false;
|
|
3437
3492
|
this.idEmpresa = 0;
|
|
3438
3493
|
this.idEnterprise = 0;
|
|
3494
|
+
this.periodoFiscal = 0;
|
|
3439
3495
|
this.id = -1;
|
|
3440
3496
|
this.codigo = "";
|
|
3441
3497
|
this.denominacion = "";
|
|
@@ -3453,6 +3509,7 @@ class MCargo extends MBasicModel {
|
|
|
3453
3509
|
if (charge) {
|
|
3454
3510
|
this.idEmpresa = parseInt(charge.id_empresa);
|
|
3455
3511
|
this.idEnterprise = +charge.id_enterprise;
|
|
3512
|
+
this.periodoFiscal = +charge.perfiscal;
|
|
3456
3513
|
this.id = parseInt(charge.id_cargo);
|
|
3457
3514
|
this.codigo = charge.codcar;
|
|
3458
3515
|
this.denominacion = charge.dencar;
|
|
@@ -3475,6 +3532,7 @@ class MCargo extends MBasicModel {
|
|
|
3475
3532
|
interface() {
|
|
3476
3533
|
return {
|
|
3477
3534
|
id_enterprise: this.idEnterprise.toString(),
|
|
3535
|
+
perfiscal: this.periodoFiscal.toString(),
|
|
3478
3536
|
codcar: this.codigo,
|
|
3479
3537
|
codestpro: this.codigoEstructuraEgreso,
|
|
3480
3538
|
codestprospi: this.codigoEstructuraIngreso,
|
|
@@ -3607,24 +3665,24 @@ class MAdministrativeUnit extends MBasicModel {
|
|
|
3607
3665
|
super();
|
|
3608
3666
|
this.idEmpresa = 0;
|
|
3609
3667
|
this.idEnterprise = 0;
|
|
3668
|
+
this.periodoFiscal = 0;
|
|
3610
3669
|
this.codigo = '';
|
|
3611
3670
|
this.denominacion = '';
|
|
3612
|
-
this.
|
|
3671
|
+
this.idUnidadCentral = 0;
|
|
3613
3672
|
this.emiteRequisicion = true;
|
|
3614
|
-
this.idcentroCosto = 0;
|
|
3615
3673
|
this.id = 0;
|
|
3616
3674
|
this.denominacionUnidadCentral = '';
|
|
3617
3675
|
this.codigoUnidadCentral = '';
|
|
3618
|
-
this.denominacionCentroCosto = '';
|
|
3619
3676
|
this.estructuras = [];
|
|
3620
3677
|
this.centroCosto = [];
|
|
3621
3678
|
if (unidad) {
|
|
3622
3679
|
this.idEmpresa = +unidad.id_empresa;
|
|
3623
3680
|
this.idEnterprise = +unidad.id_enterprise;
|
|
3681
|
+
this.periodoFiscal = +this.periodoFiscal;
|
|
3624
3682
|
this.id = +unidad.id_uniadm;
|
|
3625
3683
|
this.codigo = unidad.coduniadm;
|
|
3626
3684
|
this.denominacion = unidad.denuniadm;
|
|
3627
|
-
this.
|
|
3685
|
+
this.idUnidadCentral = +unidad.id_uac;
|
|
3628
3686
|
this.emiteRequisicion = unidad.estemireq == '1' ? true : false;
|
|
3629
3687
|
this.denominacionUnidadCentral = unidad.denuac;
|
|
3630
3688
|
this.codigoUnidadCentral = unidad.codigouac;
|
|
@@ -3643,8 +3701,9 @@ class MAdministrativeUnit extends MBasicModel {
|
|
|
3643
3701
|
return {
|
|
3644
3702
|
id_empresa: this.idEmpresa.toString(),
|
|
3645
3703
|
id_enterprise: this.idEnterprise.toString(),
|
|
3704
|
+
perfiscal: this.periodoFiscal.toString(),
|
|
3646
3705
|
coduniadm: this.codigo,
|
|
3647
|
-
|
|
3706
|
+
id_uac: this.idUnidadCentral.toString(),
|
|
3648
3707
|
denuniadm: this.denominacion,
|
|
3649
3708
|
estemireq: this.emiteRequisicion ? '1' : '0',
|
|
3650
3709
|
id_uniadm: this.id.toString(),
|
|
@@ -3771,6 +3830,7 @@ class MServiceCharge extends MBasicModel {
|
|
|
3771
3830
|
super();
|
|
3772
3831
|
this.companyId = 0;
|
|
3773
3832
|
this.idEnterprise = 0;
|
|
3833
|
+
this.periodoFiscal = 0;
|
|
3774
3834
|
this.id = -1;
|
|
3775
3835
|
this.serviceId = 0;
|
|
3776
3836
|
this.denomination = '';
|
|
@@ -3778,6 +3838,7 @@ class MServiceCharge extends MBasicModel {
|
|
|
3778
3838
|
this.status = false;
|
|
3779
3839
|
if (ser) {
|
|
3780
3840
|
this.idEnterprise = +ser.id_enterprise;
|
|
3841
|
+
this.periodoFiscal = +ser.perfiscal;
|
|
3781
3842
|
this.companyId = parseInt(ser.id_empresa);
|
|
3782
3843
|
this.id = parseInt(ser.id_cargo);
|
|
3783
3844
|
this.serviceId = parseInt(ser.id_servicio);
|
|
@@ -3792,6 +3853,7 @@ class MServiceCharge extends MBasicModel {
|
|
|
3792
3853
|
interface() {
|
|
3793
3854
|
return {
|
|
3794
3855
|
id_enterprise: this.idEnterprise.toString(),
|
|
3856
|
+
perfiscal: this.periodoFiscal.toString(),
|
|
3795
3857
|
id_empresa: this.companyId.toString(),
|
|
3796
3858
|
id_cargo: this.id.toString(),
|
|
3797
3859
|
id_servicio: this.serviceId.toString(),
|
|
@@ -6508,7 +6570,7 @@ class SigespService {
|
|
|
6508
6570
|
* @description Actualiza el moncmp de sigesp_comprobante
|
|
6509
6571
|
*/
|
|
6510
6572
|
updateComprobanteAmount(amount, idComprobante) {
|
|
6511
|
-
return this.http.put(`${this.URL}/dao/
|
|
6573
|
+
return this.http.put(`${this.URL}/dao/sig/comprobante_dao.php?monto=true`, {
|
|
6512
6574
|
moncmp: amount,
|
|
6513
6575
|
id_comprobante: idComprobante
|
|
6514
6576
|
}, {
|
|
@@ -6947,37 +7009,19 @@ class SigespService {
|
|
|
6947
7009
|
getFuenteFinanciamiento() {
|
|
6948
7010
|
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))));
|
|
6949
7011
|
}
|
|
6950
|
-
/**
|
|
6951
|
-
* @description Obtiene los centros de costo
|
|
6952
|
-
* @return Observable<MCentroCosto[]>
|
|
6953
|
-
* @author Miguel Ramírez
|
|
6954
|
-
* @param id:idusurio o id del ecntro de costo
|
|
6955
|
-
* modificado 28-12-2022
|
|
6956
|
-
*/
|
|
6957
|
-
getCentroCosto(tipo = null, id) {
|
|
6958
|
-
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))));
|
|
6959
|
-
}
|
|
6960
7012
|
/**
|
|
6961
7013
|
* @description Obtiene los centros de costo
|
|
6962
7014
|
* @return Observable<IResponse>
|
|
6963
|
-
*
|
|
7015
|
+
* modificado 28-12-2022
|
|
6964
7016
|
*/
|
|
6965
|
-
|
|
6966
|
-
return this.http.get(`${this.URL}/dao/scg/centro_costo_dao.php`, { headers: this.getHttpHeaders() }).pipe(
|
|
7017
|
+
getCentroCosto(tipo, idEnterprise, periodoFiscal) {
|
|
7018
|
+
return this.http.get(`${this.URL}/dao/scg/centro_costo_dao.php?tipo=${tipo}&e=${idEnterprise}&periodo=${periodoFiscal}`, { headers: this.getHttpHeaders() }).pipe(map((res) => {
|
|
6967
7019
|
if (res.success) {
|
|
6968
7020
|
res.data = res.data.map(element => new MCentroCosto(element));
|
|
6969
7021
|
}
|
|
6970
7022
|
return res;
|
|
6971
7023
|
}));
|
|
6972
7024
|
}
|
|
6973
|
-
getUserCostCenters(codigo) {
|
|
6974
|
-
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) => {
|
|
6975
|
-
if (res.success) {
|
|
6976
|
-
res.data = res.data.map(element => new MUsuarioCentroCosto(element));
|
|
6977
|
-
}
|
|
6978
|
-
return res;
|
|
6979
|
-
}));
|
|
6980
|
-
}
|
|
6981
7025
|
/**
|
|
6982
7026
|
* @description Abre el dialog de checkks
|
|
6983
7027
|
* @param columns Columnas que va a tener la tabla
|
|
@@ -7009,35 +7053,6 @@ class SigespService {
|
|
|
7009
7053
|
});
|
|
7010
7054
|
return dialogRef.afterClosed().toPromise();
|
|
7011
7055
|
}
|
|
7012
|
-
/**
|
|
7013
|
-
* @description Abre el dialog de las comunidades
|
|
7014
|
-
* @return Promise<MPlanUnicoCuenta>
|
|
7015
|
-
* @author Miguel Ramírez
|
|
7016
|
-
*/
|
|
7017
|
-
openDialogPlanUnicoCuentas() {
|
|
7018
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
7019
|
-
let planes = yield this.getListadoPLanUnicoCuentas().toPromise();
|
|
7020
|
-
let dialogRef = this.dialog.open(CatalogoComponent, {
|
|
7021
|
-
data: {
|
|
7022
|
-
columns: ['cuenta', 'denominacion'],
|
|
7023
|
-
columnNames: ['cuenta', 'denominación'],
|
|
7024
|
-
title: 'Catálogo de Plan de Cuentas Géneral',
|
|
7025
|
-
dataSource: planes
|
|
7026
|
-
},
|
|
7027
|
-
width: '1000px',
|
|
7028
|
-
maxHeight: '90vh'
|
|
7029
|
-
});
|
|
7030
|
-
return dialogRef.afterClosed().toPromise();
|
|
7031
|
-
});
|
|
7032
|
-
}
|
|
7033
|
-
/**
|
|
7034
|
-
* @description Obtiene el listado del plan único de cuentas
|
|
7035
|
-
* @return Observable<MplanUnicoCuenta[]>
|
|
7036
|
-
* @author Miguel Ramírez
|
|
7037
|
-
*/
|
|
7038
|
-
getListadoPLanUnicoCuentas() {
|
|
7039
|
-
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))));
|
|
7040
|
-
}
|
|
7041
7056
|
/**
|
|
7042
7057
|
* @description Obtiene la configuración de SCG
|
|
7043
7058
|
* @return Observable<MConfiguracionSCG[]>
|
|
@@ -7349,9 +7364,9 @@ class SigespService {
|
|
|
7349
7364
|
* @return Promise<McuentaInstitucional>
|
|
7350
7365
|
* @author Miguel Ramírez
|
|
7351
7366
|
*/
|
|
7352
|
-
openDialogCuentasInstitucionales() {
|
|
7367
|
+
openDialogCuentasInstitucionales(idEnterprise, periodoFical) {
|
|
7353
7368
|
return __awaiter(this, void 0, void 0, function* () {
|
|
7354
|
-
let accounts = yield this.getCuentasInstitucionales().toPromise();
|
|
7369
|
+
let accounts = yield this.getCuentasInstitucionales(idEnterprise, periodoFical).toPromise();
|
|
7355
7370
|
let dialogRef = this.dialog.open(CatalogoComponent, {
|
|
7356
7371
|
data: {
|
|
7357
7372
|
columns: ['cuenta', 'denominacion'],
|
|
@@ -7370,8 +7385,8 @@ class SigespService {
|
|
|
7370
7385
|
* @return Observable<MCuentaInstitucional[]>
|
|
7371
7386
|
* @author Miguel Ramírez
|
|
7372
7387
|
*/
|
|
7373
|
-
getCuentasInstitucionales(inventory) {
|
|
7374
|
-
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))));
|
|
7388
|
+
getCuentasInstitucionales(idEnterprise, periodoFical, inventory) {
|
|
7389
|
+
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))));
|
|
7375
7390
|
}
|
|
7376
7391
|
/**
|
|
7377
7392
|
* @description Abre el dialog de las cuentas de presupuesto (Recursos y Egresos)
|
|
@@ -7701,8 +7716,8 @@ class SigespService {
|
|
|
7701
7716
|
* @return Observable<MUsuarioPrefijo[]>
|
|
7702
7717
|
* @author Carlos Albornoz
|
|
7703
7718
|
*/
|
|
7704
|
-
getUserPrefix(filter = null, code = null) {
|
|
7705
|
-
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) => {
|
|
7719
|
+
getUserPrefix(filter = null, code = null, idEnterprise, periodo) {
|
|
7720
|
+
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) => {
|
|
7706
7721
|
if (res.success) {
|
|
7707
7722
|
res.data = res.data.map(e => new MUsuarioPrefijo(e));
|
|
7708
7723
|
}
|
|
@@ -7840,7 +7855,7 @@ class SigespService {
|
|
|
7840
7855
|
* @author Carlos Albornoz
|
|
7841
7856
|
*/
|
|
7842
7857
|
getSigecofBanks() {
|
|
7843
|
-
return this.http.get(`${this.URL}/dao/
|
|
7858
|
+
return this.http.get(`${this.URL}/dao/cfg/banco_sigecof_dao.php`, { headers: this.getHttpHeaders() }).pipe(retry(3), catchError(this.handlerError), map((res) => {
|
|
7844
7859
|
if (res.success) {
|
|
7845
7860
|
res.data = res.data.map(e => new MSigecofBank(e));
|
|
7846
7861
|
}
|
|
@@ -9086,6 +9101,7 @@ class MUnidadAdministradoraCentral extends MBasicModel {
|
|
|
9086
9101
|
super();
|
|
9087
9102
|
this.idEmpresa = 0;
|
|
9088
9103
|
this.idEnterprise = 0;
|
|
9104
|
+
this.periodoFiscal = 0;
|
|
9089
9105
|
this.idUnidadAdministradora = 0;
|
|
9090
9106
|
this.codigoUnidadCentral = '';
|
|
9091
9107
|
this.denominacionUnidadCentral = '';
|
|
@@ -9095,9 +9111,9 @@ class MUnidadAdministradoraCentral extends MBasicModel {
|
|
|
9095
9111
|
if (e) {
|
|
9096
9112
|
this.idEmpresa = e.id_empresa;
|
|
9097
9113
|
this.idEnterprise = e.id_enterprise;
|
|
9114
|
+
this.idUnidadAdministradora = +e.id_uac;
|
|
9098
9115
|
this.codigoUnidadCentral = e.codigouac;
|
|
9099
9116
|
this.denominacionUnidadCentral = e.denuac;
|
|
9100
|
-
this.idUnidadAdministradora = +e.coduac;
|
|
9101
9117
|
this.tipoUnidad = e.tipuac == '1';
|
|
9102
9118
|
this.responsableUnidad = e.resuac;
|
|
9103
9119
|
if (e.unidad_organizativa) {
|
|
@@ -9112,7 +9128,7 @@ class MUnidadAdministradoraCentral extends MBasicModel {
|
|
|
9112
9128
|
return {
|
|
9113
9129
|
id_enterprise: this.idEnterprise,
|
|
9114
9130
|
id_empresa: this.idEmpresa,
|
|
9115
|
-
|
|
9131
|
+
id_uac: this.idUnidadAdministradora.toString(),
|
|
9116
9132
|
codigouac: this.codigoUnidadCentral,
|
|
9117
9133
|
denuac: this.denominacionUnidadCentral,
|
|
9118
9134
|
resuac: this.responsableUnidad,
|
|
@@ -9122,6 +9138,22 @@ class MUnidadAdministradoraCentral extends MBasicModel {
|
|
|
9122
9138
|
}
|
|
9123
9139
|
}
|
|
9124
9140
|
|
|
9141
|
+
class MPlanUnicoCuenta extends MBasicModel {
|
|
9142
|
+
constructor(plan) {
|
|
9143
|
+
super();
|
|
9144
|
+
if (plan) {
|
|
9145
|
+
this.denominacion = plan.denominacion;
|
|
9146
|
+
this.cuenta = plan.sc_cuenta;
|
|
9147
|
+
}
|
|
9148
|
+
}
|
|
9149
|
+
dataInterface() {
|
|
9150
|
+
return {
|
|
9151
|
+
denominacion: this.denominacion,
|
|
9152
|
+
sc_cuenta: this.cuenta,
|
|
9153
|
+
};
|
|
9154
|
+
}
|
|
9155
|
+
}
|
|
9156
|
+
|
|
9125
9157
|
class MAccountMarriage extends MBasicModel {
|
|
9126
9158
|
constructor(marriage) {
|
|
9127
9159
|
super();
|
|
@@ -9156,11 +9188,13 @@ class MServiceType extends MBasicModel {
|
|
|
9156
9188
|
this.id = -1;
|
|
9157
9189
|
this.idEmpresa = 0;
|
|
9158
9190
|
this.idEnterprise = 0;
|
|
9191
|
+
this.periodoFiscal = 0;
|
|
9159
9192
|
this.denomination = null;
|
|
9160
9193
|
this.observation = null;
|
|
9161
9194
|
if (type) {
|
|
9162
9195
|
this.idEmpresa = parseInt(type.id_empresa);
|
|
9163
9196
|
this.idEnterprise = +type.id_enterprise;
|
|
9197
|
+
this.periodoFiscal = +type.perfiscal;
|
|
9164
9198
|
this.id = parseInt(type.id_tiposervicio);
|
|
9165
9199
|
this.denomination = type.dentipser;
|
|
9166
9200
|
this.observation = type.obstipser;
|
|
@@ -9173,6 +9207,7 @@ class MServiceType extends MBasicModel {
|
|
|
9173
9207
|
return {
|
|
9174
9208
|
id_empresa: this.idEmpresa.toString(),
|
|
9175
9209
|
id_enterprise: this.idEnterprise.toString(),
|
|
9210
|
+
perfiscal: this.periodoFiscal.toString(),
|
|
9176
9211
|
dentipser: this.denomination,
|
|
9177
9212
|
id_tiposervicio: this.id.toString(),
|
|
9178
9213
|
obstipser: this.observation
|
|
@@ -9185,6 +9220,7 @@ class MService extends MBasicModel {
|
|
|
9185
9220
|
super();
|
|
9186
9221
|
this.id = -1;
|
|
9187
9222
|
this.idEnterprise = 0;
|
|
9223
|
+
this.periodoFiscal = 0;
|
|
9188
9224
|
this.code = '';
|
|
9189
9225
|
this.companyId = 0;
|
|
9190
9226
|
this.serviceTypeId = 0;
|
|
@@ -9194,6 +9230,7 @@ class MService extends MBasicModel {
|
|
|
9194
9230
|
this.charges = [];
|
|
9195
9231
|
if (service) {
|
|
9196
9232
|
this.idEnterprise = +service.id_enterprise;
|
|
9233
|
+
this.periodoFiscal = +service.perfiscal;
|
|
9197
9234
|
this.id = parseInt(service.id_servicio);
|
|
9198
9235
|
this.companyId = parseInt(service.id_empresa);
|
|
9199
9236
|
this.serviceTypeId = parseInt(service.id_tiposervicio);
|
|
@@ -9212,6 +9249,7 @@ class MService extends MBasicModel {
|
|
|
9212
9249
|
dataAsInterface() {
|
|
9213
9250
|
return {
|
|
9214
9251
|
id_enterprise: this.idEnterprise.toString(),
|
|
9252
|
+
perfiscal: this.periodoFiscal.toString(),
|
|
9215
9253
|
denser: this.denomination,
|
|
9216
9254
|
id_empresa: this.companyId.toString(),
|
|
9217
9255
|
id_servicio: this.id.toString(),
|
|
@@ -9230,11 +9268,13 @@ class MClause extends MBasicModel {
|
|
|
9230
9268
|
this.id = -1;
|
|
9231
9269
|
this.companyId = 0;
|
|
9232
9270
|
this.idEnterprise = 0;
|
|
9271
|
+
this.periodoFiscal = 0;
|
|
9233
9272
|
this.clause = '';
|
|
9234
9273
|
this.denomination = '';
|
|
9235
9274
|
if (clause) {
|
|
9236
9275
|
this.companyId = parseInt(clause.id_empresa);
|
|
9237
9276
|
this.idEnterprise = +clause.id_enterprise;
|
|
9277
|
+
this.periodoFiscal = +clause.perfiscal;
|
|
9238
9278
|
this.clause = clause.codcla;
|
|
9239
9279
|
this.denomination = clause.dencla;
|
|
9240
9280
|
this.id = parseInt(clause.id_clausula);
|
|
@@ -9247,6 +9287,7 @@ class MClause extends MBasicModel {
|
|
|
9247
9287
|
return {
|
|
9248
9288
|
codcla: this.clause,
|
|
9249
9289
|
dencla: this.denomination,
|
|
9290
|
+
perfiscal: this.periodoFiscal.toString(),
|
|
9250
9291
|
id_empresa: this.companyId ? this.companyId.toString() : null,
|
|
9251
9292
|
id_enterprise: this.idEnterprise.toString(),
|
|
9252
9293
|
id_clausula: this.id ? this.id.toString() : null
|
|
@@ -9260,11 +9301,13 @@ class MClauseModality extends MBasicModel {
|
|
|
9260
9301
|
this.id = -1;
|
|
9261
9302
|
this.companyId = 0;
|
|
9262
9303
|
this.idEnterprise = 0;
|
|
9304
|
+
this.periodoFiscal = 0;
|
|
9263
9305
|
this.code = '';
|
|
9264
9306
|
this.denomination = '';
|
|
9265
9307
|
this.clauses = [];
|
|
9266
9308
|
if (mod) {
|
|
9267
9309
|
this.idEnterprise = +mod.id_enterprise;
|
|
9310
|
+
this.periodoFiscal = +mod.perfiscal;
|
|
9268
9311
|
this.id = parseInt(mod.id_modcla);
|
|
9269
9312
|
this.companyId = parseInt(mod.id_empresa);
|
|
9270
9313
|
this.code = mod.codmodcla;
|
|
@@ -9278,6 +9321,7 @@ class MClauseModality extends MBasicModel {
|
|
|
9278
9321
|
dataAsInterface() {
|
|
9279
9322
|
return {
|
|
9280
9323
|
id_enterprise: this.idEnterprise.toString(),
|
|
9324
|
+
perfiscal: this.periodoFiscal.toString(),
|
|
9281
9325
|
clausulas: this.clauses.map((e) => e.dataAsInterface()),
|
|
9282
9326
|
codmodcla: this.code,
|
|
9283
9327
|
denmodcla: this.denomination,
|
|
@@ -14620,5 +14664,5 @@ class customPaginator extends MatPaginatorIntl {
|
|
|
14620
14664
|
* Generated bundle index. Do not edit.
|
|
14621
14665
|
*/
|
|
14622
14666
|
|
|
14623
|
-
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,
|
|
14667
|
+
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 };
|
|
14624
14668
|
//# sourceMappingURL=sigesp.mjs.map
|