sigesp 0.9.11-20221211 → 0.9.13-20221217
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 +394 -71
- package/bundles/sigesp.umd.js.map +1 -1
- package/bundles/sigesp.umd.min.js +2 -2
- package/bundles/sigesp.umd.min.js.map +1 -1
- package/esm2015/lib/core/interfaces/Banco.js +1 -1
- package/esm2015/lib/core/interfaces/CentroCosto.js +1 -1
- package/esm2015/lib/core/interfaces/ComprobantePresupuestario.js +1 -1
- package/esm2015/lib/core/interfaces/Configuracion.js +1 -1
- package/esm2015/lib/core/interfaces/Servicios.js +1 -1
- package/esm2015/lib/core/interfaces/Tributos.js +1 -1
- package/esm2015/lib/core/interfaces/UsuarioPrefijo.js +1 -1
- package/esm2015/lib/core/models/CFG/MPrefijo.model.js +61 -0
- package/esm2015/lib/core/models/CFG/Procede.model.js +31 -0
- package/esm2015/lib/core/models/CFG/TasaCambio.model.js +34 -0
- package/esm2015/lib/core/models/CFG/locations.model.js +12 -9
- package/esm2015/lib/core/models/CFG/userPrefix.model.js +43 -0
- package/esm2015/lib/core/models/SCB/bank.model.js +25 -19
- package/esm2015/lib/core/models/SCG/centroCosto.model.js +53 -4
- package/esm2015/lib/core/models/SOC/charge.model.js +4 -1
- package/esm2015/lib/core/models/SOC/clause.model.js +6 -3
- package/esm2015/lib/core/models/SOC/clauseModality.model.js +6 -3
- package/esm2015/lib/core/models/SOC/configuracionSOC.model.js +4 -1
- package/esm2015/lib/core/models/SOC/service.model.js +7 -4
- package/esm2015/lib/core/models/SOC/serviceCharge.model.js +7 -4
- package/esm2015/lib/core/models/SOC/serviceType.model.js +8 -2
- package/esm2015/lib/core/models/SPG/comprobantePresupuestario.model.js +5 -1
- package/esm2015/lib/core/models/SSS/sistema.js +21 -6
- package/esm2015/lib/core/models/STB/deduction.model.js +7 -1
- package/esm2015/lib/sigesp.service.js +53 -6
- package/esm2015/public-api.js +6 -3
- package/esm2015/sigesp.js +1 -1
- package/fesm2015/sigesp.js +362 -62
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/core/interfaces/Banco.d.ts +20 -0
- package/lib/core/interfaces/CentroCosto.d.ts +10 -1
- package/lib/core/interfaces/ComprobantePresupuestario.d.ts +2 -0
- package/lib/core/interfaces/Configuracion.d.ts +32 -0
- package/lib/core/interfaces/Servicios.d.ts +7 -0
- package/lib/core/interfaces/Tributos.d.ts +3 -0
- package/lib/core/interfaces/UsuarioPrefijo.d.ts +8 -5
- package/lib/core/models/CFG/MPrefijo.model.d.ts +21 -0
- package/lib/core/models/CFG/Procede.model.d.ts +11 -0
- package/lib/core/models/CFG/TasaCambio.model.d.ts +12 -0
- package/lib/core/models/CFG/locations.model.d.ts +6 -6
- package/lib/core/models/CFG/userPrefix.model.d.ts +15 -0
- package/lib/core/models/SCB/bank.model.d.ts +3 -1
- package/lib/core/models/SCG/centroCosto.model.d.ts +15 -1
- 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 +2 -0
- package/lib/core/models/SPG/comprobantePresupuestario.model.d.ts +2 -0
- package/lib/core/models/SSS/sistema.d.ts +4 -2
- package/lib/core/models/STB/deduction.model.d.ts +2 -0
- package/lib/sigesp.service.d.ts +31 -3
- package/package.json +1 -1
- package/public-api.d.ts +8 -4
- package/sigesp.d.ts +10 -11
- package/sigesp.metadata.json +1 -1
- package/esm2015/lib/core/models/SSS/userPrefix.model.js +0 -15
- package/lib/core/models/SSS/userPrefix.model.d.ts +0 -11
package/fesm2015/sigesp.js
CHANGED
|
@@ -60,6 +60,107 @@ class MBasicModel {
|
|
|
60
60
|
}
|
|
61
61
|
}
|
|
62
62
|
|
|
63
|
+
class MUsuarioPrefijo extends MBasicModel {
|
|
64
|
+
constructor(e) {
|
|
65
|
+
super();
|
|
66
|
+
this.idEmpresa = 0;
|
|
67
|
+
this.id = 0;
|
|
68
|
+
this.idUsuario = 0;
|
|
69
|
+
this.idDtPrefijo = 0;
|
|
70
|
+
this.prefijo = '';
|
|
71
|
+
this.procede = '';
|
|
72
|
+
this.codigoSistema = '';
|
|
73
|
+
this.codigoUsuario = '';
|
|
74
|
+
this.estatusActivo = true;
|
|
75
|
+
if (e) {
|
|
76
|
+
this.idEmpresa = +e.id_empresa;
|
|
77
|
+
this.id = +e.id;
|
|
78
|
+
this.idUsuario = +e.id_usuario;
|
|
79
|
+
this.idDtPrefijo = +e.id_dt_prefijo;
|
|
80
|
+
this.prefijo = e.prefijo;
|
|
81
|
+
this.procede = e.procede;
|
|
82
|
+
this.codigoSistema = e.codsis;
|
|
83
|
+
this.codigoUsuario = e.codusu;
|
|
84
|
+
this.estatusActivo = e.estact == '1';
|
|
85
|
+
}
|
|
86
|
+
else {
|
|
87
|
+
this.isNew = true;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
dataInterface() {
|
|
91
|
+
return {
|
|
92
|
+
id_empresa: this.idEmpresa.toString(),
|
|
93
|
+
id: this.id.toString(),
|
|
94
|
+
id_usuario: this.idUsuario.toString(),
|
|
95
|
+
id_dt_prefijo: this.idDtPrefijo.toString(),
|
|
96
|
+
prefijo: this.prefijo,
|
|
97
|
+
procede: this.procede,
|
|
98
|
+
codsis: this.codigoSistema,
|
|
99
|
+
codusu: this.codigoUsuario,
|
|
100
|
+
estact: this.estatusActivo ? '1' : '0',
|
|
101
|
+
};
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
class MPrefijo extends MBasicModel {
|
|
106
|
+
constructor(e) {
|
|
107
|
+
super();
|
|
108
|
+
this.idEmpresa = 0;
|
|
109
|
+
this.id = 0;
|
|
110
|
+
this.prefijo = '';
|
|
111
|
+
this.procede = '';
|
|
112
|
+
this.codsis = '';
|
|
113
|
+
this.numeroInicial = 0;
|
|
114
|
+
this.numeroFinal = 0;
|
|
115
|
+
this.maximaLogitud = 0;
|
|
116
|
+
this.numeroActual = 0;
|
|
117
|
+
this.estatusActivo = true;
|
|
118
|
+
this.estatusInicializarComprobanteSCG = false;
|
|
119
|
+
this.estatusPrefijoGeneral = false;
|
|
120
|
+
this.estatusPrefijoFecha = false;
|
|
121
|
+
this.usuarios = [];
|
|
122
|
+
if (e) {
|
|
123
|
+
this.idEmpresa = +e.id_empresa;
|
|
124
|
+
this.id = +e.id;
|
|
125
|
+
this.prefijo = e.prefijo;
|
|
126
|
+
this.procede = e.procede;
|
|
127
|
+
this.codsis = e.codsis;
|
|
128
|
+
this.numeroInicial = +e.nro_inicial;
|
|
129
|
+
this.numeroFinal = +e.nro_final;
|
|
130
|
+
this.maximaLogitud = +e.maxlen;
|
|
131
|
+
this.numeroActual = +e.nro_actual;
|
|
132
|
+
this.estatusActivo = e.estact == '1';
|
|
133
|
+
this.estatusInicializarComprobanteSCG = e.estcompscg == '1';
|
|
134
|
+
this.estatusPrefijoGeneral = e.estpregral == '1';
|
|
135
|
+
this.estatusPrefijoFecha = e.estprefec == '1';
|
|
136
|
+
if (this.usuarios) {
|
|
137
|
+
this.usuarios = e.usuarios.map(e => new MUsuarioPrefijo(e));
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
else {
|
|
141
|
+
this.isNew = true;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
dataInterface() {
|
|
145
|
+
return {
|
|
146
|
+
id_empresa: this.idEmpresa.toString(),
|
|
147
|
+
id: this.id.toString(),
|
|
148
|
+
prefijo: this.prefijo,
|
|
149
|
+
procede: this.procede,
|
|
150
|
+
codsis: this.codsis,
|
|
151
|
+
nro_inicial: this.numeroInicial.toString(),
|
|
152
|
+
nro_final: this.numeroFinal.toString(),
|
|
153
|
+
maxlen: this.maximaLogitud.toString(),
|
|
154
|
+
nro_actual: this.numeroActual.toString(),
|
|
155
|
+
estact: this.estatusActivo ? '1' : '0',
|
|
156
|
+
estcompscg: this.estatusInicializarComprobanteSCG ? '1' : '0',
|
|
157
|
+
estpregral: this.estatusPrefijoGeneral ? '1' : '0',
|
|
158
|
+
estprefec: this.estatusPrefijoFecha ? '1' : '0',
|
|
159
|
+
usuarios: this.usuarios.map(function (e) { return e.dataInterface(); }),
|
|
160
|
+
};
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
63
164
|
class MEnterprise extends MBasicModel {
|
|
64
165
|
constructor(e) {
|
|
65
166
|
super();
|
|
@@ -586,20 +687,6 @@ class MProveedor {
|
|
|
586
687
|
}
|
|
587
688
|
}
|
|
588
689
|
|
|
589
|
-
class MUsuarioPrefijo extends MBasicModel {
|
|
590
|
-
constructor(prefijo) {
|
|
591
|
-
super();
|
|
592
|
-
if (prefijo) {
|
|
593
|
-
this.codsis = prefijo.codsis;
|
|
594
|
-
this.codusu = prefijo.codusu;
|
|
595
|
-
this.id = prefijo.id;
|
|
596
|
-
this.id_empresa = prefijo.id_empresa;
|
|
597
|
-
this.prefijo = prefijo.prefijo;
|
|
598
|
-
this.procede = prefijo.procede;
|
|
599
|
-
}
|
|
600
|
-
}
|
|
601
|
-
}
|
|
602
|
-
|
|
603
690
|
class CatalogoComponent {
|
|
604
691
|
constructor(dialogRef, dialogData) {
|
|
605
692
|
this.dialogRef = dialogRef;
|
|
@@ -1199,10 +1286,58 @@ class MAllStructure {
|
|
|
1199
1286
|
}
|
|
1200
1287
|
}
|
|
1201
1288
|
|
|
1202
|
-
class MCentroCosto {
|
|
1289
|
+
class MCentroCosto extends MBasicModel {
|
|
1203
1290
|
constructor(centroCosto) {
|
|
1204
|
-
|
|
1205
|
-
this.
|
|
1291
|
+
super();
|
|
1292
|
+
this.idEmpresa = 0;
|
|
1293
|
+
this.idEnterprise = 0;
|
|
1294
|
+
if (centroCosto) {
|
|
1295
|
+
this.idEmpresa = +centroCosto.id_empresa;
|
|
1296
|
+
this.idEnterprise = +centroCosto.id_enterprise;
|
|
1297
|
+
this.centro = centroCosto.centro ? centroCosto.centro : centroCosto.codcencos;
|
|
1298
|
+
this.denominacion = centroCosto.denominacion;
|
|
1299
|
+
}
|
|
1300
|
+
else {
|
|
1301
|
+
this.isNew = true;
|
|
1302
|
+
}
|
|
1303
|
+
}
|
|
1304
|
+
;
|
|
1305
|
+
dataInterface() {
|
|
1306
|
+
return {
|
|
1307
|
+
id_empresa: this.idEmpresa.toString(),
|
|
1308
|
+
id_enterprise: this.idEnterprise.toString(),
|
|
1309
|
+
codcencos: this.centro,
|
|
1310
|
+
denominacion: this.denominacion,
|
|
1311
|
+
};
|
|
1312
|
+
}
|
|
1313
|
+
}
|
|
1314
|
+
class MUsuarioCentroCosto extends MBasicModel {
|
|
1315
|
+
constructor(e) {
|
|
1316
|
+
super();
|
|
1317
|
+
this.idEmpresa = 0;
|
|
1318
|
+
this.idEnterprise = 0;
|
|
1319
|
+
this.codigoCentroCosto = '';
|
|
1320
|
+
this.usuario = '';
|
|
1321
|
+
this.idDtCentro = 0;
|
|
1322
|
+
if (e) {
|
|
1323
|
+
this.idEmpresa = +e.id_empresa;
|
|
1324
|
+
this.idEnterprise = +e.id_enterprise;
|
|
1325
|
+
this.codigoCentroCosto = e.codcencos;
|
|
1326
|
+
this.usuario = e.codusu;
|
|
1327
|
+
this.usuario = e.codusu;
|
|
1328
|
+
}
|
|
1329
|
+
else {
|
|
1330
|
+
this.isNew = true;
|
|
1331
|
+
}
|
|
1332
|
+
}
|
|
1333
|
+
dataInterface() {
|
|
1334
|
+
return {
|
|
1335
|
+
id_empresa: this.idEmpresa.toString(),
|
|
1336
|
+
id_enterprise: this.idEnterprise.toString(),
|
|
1337
|
+
codcencos: this.codigoCentroCosto,
|
|
1338
|
+
codusu: this.usuario,
|
|
1339
|
+
id_dt_cencos: this.idDtCentro.toString(),
|
|
1340
|
+
};
|
|
1206
1341
|
}
|
|
1207
1342
|
}
|
|
1208
1343
|
|
|
@@ -1547,23 +1682,39 @@ class MUserDetail extends MBasicModel {
|
|
|
1547
1682
|
}
|
|
1548
1683
|
}
|
|
1549
1684
|
|
|
1550
|
-
class MSistema {
|
|
1685
|
+
class MSistema extends MBasicModel {
|
|
1551
1686
|
constructor(sis) {
|
|
1687
|
+
super();
|
|
1552
1688
|
this.nombre = null;
|
|
1553
1689
|
this.codigo = null;
|
|
1554
1690
|
this.estado = null;
|
|
1555
1691
|
this.usuarios = [];
|
|
1556
1692
|
this.eliminados = [];
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1693
|
+
if (sis) {
|
|
1694
|
+
this.nombre = sis.nomsis;
|
|
1695
|
+
this.codigo = sis.codsis;
|
|
1696
|
+
this.estado = sis.estsis;
|
|
1697
|
+
this.usuarios = sis.usuarios.map(e => new MUserDetail(e));
|
|
1698
|
+
}
|
|
1699
|
+
else {
|
|
1700
|
+
this.isNew = true;
|
|
1701
|
+
}
|
|
1702
|
+
}
|
|
1703
|
+
dataInterface() {
|
|
1704
|
+
return {
|
|
1705
|
+
codsis: this.nombre,
|
|
1706
|
+
nomsis: this.codigo,
|
|
1707
|
+
estsis: this.estado,
|
|
1708
|
+
usuarios: this.usuarios.map(function (e) { return e.turnToInterface(); }),
|
|
1709
|
+
};
|
|
1561
1710
|
}
|
|
1562
1711
|
}
|
|
1563
1712
|
|
|
1564
1713
|
class MComprobantePresupuestarioEgresos {
|
|
1565
1714
|
constructor(comprobante) {
|
|
1715
|
+
this.idEnterprise = 0;
|
|
1566
1716
|
this.idEmpresa = parseInt(comprobante.id_empresa);
|
|
1717
|
+
this.idEnterprise = +comprobante.id_enterprise;
|
|
1567
1718
|
this.idComprobante = parseInt(comprobante.id_comprobante);
|
|
1568
1719
|
this.idEp1 = parseInt(comprobante.id_ep1);
|
|
1569
1720
|
this.idEp2 = parseInt(comprobante.id_ep2);
|
|
@@ -1586,7 +1737,9 @@ class MComprobantePresupuestarioEgresos {
|
|
|
1586
1737
|
}
|
|
1587
1738
|
class MComprobantePresupuestarioIngresos {
|
|
1588
1739
|
constructor(comprobante) {
|
|
1740
|
+
this.idEnterprise = 0;
|
|
1589
1741
|
this.idEmpresa = parseInt(comprobante.id_empresa);
|
|
1742
|
+
this.idEnterprise = +comprobante.id_enterprise;
|
|
1590
1743
|
this.idComprobante = parseInt(comprobante.id_comprobante);
|
|
1591
1744
|
this.idEp1 = parseInt(comprobante.id_ep1);
|
|
1592
1745
|
this.idEp2 = parseInt(comprobante.id_ep2);
|
|
@@ -1839,6 +1992,9 @@ class MCountry extends MBasicModel {
|
|
|
1839
1992
|
this.monofi = parseInt(country.monofi);
|
|
1840
1993
|
this.monsec = parseInt(country.monsec);
|
|
1841
1994
|
}
|
|
1995
|
+
else {
|
|
1996
|
+
this.isNew = true;
|
|
1997
|
+
}
|
|
1842
1998
|
}
|
|
1843
1999
|
dataInterface() {
|
|
1844
2000
|
return {
|
|
@@ -1960,7 +2116,7 @@ class MCity extends MBasicModel {
|
|
|
1960
2116
|
}
|
|
1961
2117
|
}
|
|
1962
2118
|
class MCommunity extends MBasicModel {
|
|
1963
|
-
constructor(
|
|
2119
|
+
constructor(e) {
|
|
1964
2120
|
super();
|
|
1965
2121
|
this.code = null;
|
|
1966
2122
|
this.countryCode = null;
|
|
@@ -1968,13 +2124,13 @@ class MCommunity extends MBasicModel {
|
|
|
1968
2124
|
this.municipalityCode = null;
|
|
1969
2125
|
this.parishCode = null;
|
|
1970
2126
|
this.name = null;
|
|
1971
|
-
if (
|
|
1972
|
-
this.code =
|
|
1973
|
-
this.countryCode =
|
|
1974
|
-
this.stateCode =
|
|
1975
|
-
this.municipalityCode =
|
|
1976
|
-
this.parishCode =
|
|
1977
|
-
this.name =
|
|
2127
|
+
if (e) {
|
|
2128
|
+
this.code = e.codcom.trim();
|
|
2129
|
+
this.countryCode = e.codpai.trim();
|
|
2130
|
+
this.stateCode = e.codest.trim();
|
|
2131
|
+
this.municipalityCode = e.codmun.trim();
|
|
2132
|
+
this.parishCode = e.codpar.trim();
|
|
2133
|
+
this.name = e.descom.trim();
|
|
1978
2134
|
}
|
|
1979
2135
|
else {
|
|
1980
2136
|
this.isNew = true;
|
|
@@ -2165,8 +2321,9 @@ class MSigecofBank extends MBasicModel {
|
|
|
2165
2321
|
class MBank extends MBasicModel {
|
|
2166
2322
|
constructor(bank) {
|
|
2167
2323
|
super();
|
|
2168
|
-
this.idEmpresa =
|
|
2169
|
-
this.id =
|
|
2324
|
+
this.idEmpresa = 0;
|
|
2325
|
+
this.id = 0;
|
|
2326
|
+
this.idEnterprise = 0;
|
|
2170
2327
|
this.name = null;
|
|
2171
2328
|
this.address = null;
|
|
2172
2329
|
this.manager = null;
|
|
@@ -2178,9 +2335,10 @@ class MBank extends MBasicModel {
|
|
|
2178
2335
|
this.swiftCode = null;
|
|
2179
2336
|
this.code = null;
|
|
2180
2337
|
this.email = null;
|
|
2181
|
-
this.enableBox =
|
|
2338
|
+
this.enableBox = false;
|
|
2182
2339
|
if (bank) {
|
|
2183
2340
|
this.idEmpresa = parseInt(bank.id_empresa);
|
|
2341
|
+
this.idEnterprise = +bank.id_enterprise;
|
|
2184
2342
|
this.id = parseInt(bank.id_banco);
|
|
2185
2343
|
this.name = bank.nomban;
|
|
2186
2344
|
this.address = bank.dirban;
|
|
@@ -2199,6 +2357,7 @@ class MBank extends MBasicModel {
|
|
|
2199
2357
|
dataInterface() {
|
|
2200
2358
|
return {
|
|
2201
2359
|
id_empresa: this.idEmpresa.toString(),
|
|
2360
|
+
id_enterprise: this.idEnterprise.toString(),
|
|
2202
2361
|
id_banco: this.id.toString(),
|
|
2203
2362
|
codban: this.code,
|
|
2204
2363
|
nomban: this.name,
|
|
@@ -2264,23 +2423,25 @@ class MAgenciaBanco extends MBasicModel {
|
|
|
2264
2423
|
class MCuentaBanco extends MBasicModel {
|
|
2265
2424
|
constructor(cb) {
|
|
2266
2425
|
super();
|
|
2267
|
-
this.idCuentaBanco =
|
|
2268
|
-
this.
|
|
2269
|
-
this.
|
|
2270
|
-
this.
|
|
2271
|
-
this.
|
|
2272
|
-
this.
|
|
2273
|
-
this.
|
|
2274
|
-
this.
|
|
2275
|
-
this.
|
|
2276
|
-
this.
|
|
2277
|
-
this.
|
|
2278
|
-
this.
|
|
2279
|
-
this.
|
|
2280
|
-
this.
|
|
2281
|
-
this.
|
|
2426
|
+
this.idCuentaBanco = 0;
|
|
2427
|
+
this.idEnterprise = 0;
|
|
2428
|
+
this.idEmpresa = 0;
|
|
2429
|
+
this.idBanco = 0;
|
|
2430
|
+
this.idTipoCuenta = 0;
|
|
2431
|
+
this.cuentaBanco = '';
|
|
2432
|
+
this.cuentaExtendida = '';
|
|
2433
|
+
this.denominacionCuenta = '';
|
|
2434
|
+
this.cuentaContable = '';
|
|
2435
|
+
this.fechaApertura = '1900-01-01';
|
|
2436
|
+
this.fechaCierre = '1900-01-01';
|
|
2437
|
+
this.estatus = 0;
|
|
2438
|
+
this.fechaUltimaConciliacion = '1900-01-01';
|
|
2439
|
+
this.denomCuentaContable = '';
|
|
2440
|
+
this.nombrebanco = '';
|
|
2441
|
+
this.nombretipocta = '';
|
|
2282
2442
|
if (cb) {
|
|
2283
2443
|
this.idCuentaBanco = parseInt(cb.id_ctabanco);
|
|
2444
|
+
this.idEnterprise = +cb.id_enterprise;
|
|
2284
2445
|
this.idEmpresa = parseInt(cb.id_empresa);
|
|
2285
2446
|
this.idBanco = parseInt(cb.id_banco);
|
|
2286
2447
|
this.idTipoCuenta = parseInt(cb.id_tipocta);
|
|
@@ -2298,6 +2459,7 @@ class MCuentaBanco extends MBasicModel {
|
|
|
2298
2459
|
}
|
|
2299
2460
|
dataInterface() {
|
|
2300
2461
|
return {
|
|
2462
|
+
id_enterprise: this.idEnterprise.toString(),
|
|
2301
2463
|
id_ctabanco: this.idCuentaBanco.toString(),
|
|
2302
2464
|
id_empresa: this.idEmpresa.toString(),
|
|
2303
2465
|
id_banco: this.idBanco.toString(),
|
|
@@ -2346,6 +2508,7 @@ class MConfigSOC extends MBasicModel {
|
|
|
2346
2508
|
constructor(config = null) {
|
|
2347
2509
|
super();
|
|
2348
2510
|
this.id = 0;
|
|
2511
|
+
this.idEnterprise = 0;
|
|
2349
2512
|
this.companyId = 0;
|
|
2350
2513
|
this.serviceOrder = 0;
|
|
2351
2514
|
this.purchaseOrder = 0;
|
|
@@ -2360,6 +2523,7 @@ class MConfigSOC extends MBasicModel {
|
|
|
2360
2523
|
this.statusMultiChargeStructure = false;
|
|
2361
2524
|
if (config) {
|
|
2362
2525
|
this.id = parseInt(config.id_soc);
|
|
2526
|
+
this.idEnterprise = +config.id_enterprise;
|
|
2363
2527
|
this.companyId = parseInt(config.id_empresa);
|
|
2364
2528
|
this.serviceOrder = parseInt(config.numordser);
|
|
2365
2529
|
this.purchaseOrder = parseInt(config.numordcom);
|
|
@@ -2382,6 +2546,7 @@ class MConfigSOC extends MBasicModel {
|
|
|
2382
2546
|
return {
|
|
2383
2547
|
id_soc: this.id.toString(),
|
|
2384
2548
|
id_empresa: this.companyId.toString(),
|
|
2549
|
+
id_enterprise: this.idEnterprise.toString(),
|
|
2385
2550
|
soc_bienes: this.goods.join(','),
|
|
2386
2551
|
soc_servicios: this.services.join(','),
|
|
2387
2552
|
estapesoc: this.opening ? '1' : '0',
|
|
@@ -2422,6 +2587,7 @@ class MCargo extends MBasicModel {
|
|
|
2422
2587
|
this.isNew = false;
|
|
2423
2588
|
this.error = false;
|
|
2424
2589
|
this.idEmpresa = 0;
|
|
2590
|
+
this.idEnterprise = 0;
|
|
2425
2591
|
this.id = null;
|
|
2426
2592
|
this.codigo = "";
|
|
2427
2593
|
this.denominacion = "";
|
|
@@ -2438,6 +2604,7 @@ class MCargo extends MBasicModel {
|
|
|
2438
2604
|
this.estadoTipoPresupuesto = "E";
|
|
2439
2605
|
if (charge) {
|
|
2440
2606
|
this.idEmpresa = parseInt(charge.id_empresa);
|
|
2607
|
+
this.idEnterprise = +charge.id_enterprise;
|
|
2441
2608
|
this.id = parseInt(charge.id_cargo);
|
|
2442
2609
|
this.codigo = charge.codcar;
|
|
2443
2610
|
this.denominacion = charge.dencar;
|
|
@@ -2459,6 +2626,7 @@ class MCargo extends MBasicModel {
|
|
|
2459
2626
|
}
|
|
2460
2627
|
interface() {
|
|
2461
2628
|
return {
|
|
2629
|
+
id_enterprise: this.idEnterprise.toString(),
|
|
2462
2630
|
codcar: this.codigo,
|
|
2463
2631
|
codestpro: this.codigoEstructuraEgreso,
|
|
2464
2632
|
codestprospi: this.codigoEstructuraIngreso,
|
|
@@ -2482,6 +2650,7 @@ class MDeduction extends MBasicModel {
|
|
|
2482
2650
|
constructor(deduction) {
|
|
2483
2651
|
super();
|
|
2484
2652
|
this.companyId = null;
|
|
2653
|
+
this.idEnterprise = 0;
|
|
2485
2654
|
this.id = null;
|
|
2486
2655
|
this.deductionType = null;
|
|
2487
2656
|
this.codeDeduction = "";
|
|
@@ -2494,6 +2663,7 @@ class MDeduction extends MBasicModel {
|
|
|
2494
2663
|
this.id_conret = 0;
|
|
2495
2664
|
if (deduction) {
|
|
2496
2665
|
this.id = parseInt(deduction.id_deduccion);
|
|
2666
|
+
this.idEnterprise = +deduction.id_enterprise;
|
|
2497
2667
|
this.deductionType = parseInt(deduction.id_tipded);
|
|
2498
2668
|
this.description = deduction.dended;
|
|
2499
2669
|
this.formula = deduction.formula;
|
|
@@ -2512,6 +2682,7 @@ class MDeduction extends MBasicModel {
|
|
|
2512
2682
|
dataInterface() {
|
|
2513
2683
|
return {
|
|
2514
2684
|
id_empresa: this.companyId.toString(),
|
|
2685
|
+
id_enterprise: this.idEnterprise.toString(),
|
|
2515
2686
|
id_deduccion: this.id.toString(),
|
|
2516
2687
|
codded: this.codeDeduction,
|
|
2517
2688
|
id_tipded: this.id.toString(),
|
|
@@ -2529,12 +2700,14 @@ class MConceptoRetencion extends MBasicModel {
|
|
|
2529
2700
|
constructor(concepto) {
|
|
2530
2701
|
super();
|
|
2531
2702
|
this.idEmpresa = 0;
|
|
2703
|
+
this.idEnterprise = 0;
|
|
2532
2704
|
this.idConceptoRetencion = 0;
|
|
2533
2705
|
this.codigoConceptoRetencion = '';
|
|
2534
2706
|
this.descripcionActividad = '';
|
|
2535
2707
|
this.observacionConceptoRetencion = '';
|
|
2536
2708
|
if (concepto) {
|
|
2537
2709
|
this.idEmpresa = parseInt(concepto.id_empresa);
|
|
2710
|
+
this.idEnterprise = +concepto.id_enterprise;
|
|
2538
2711
|
this.idConceptoRetencion = parseInt(concepto.id_conret);
|
|
2539
2712
|
this.codigoConceptoRetencion = concepto.codconret;
|
|
2540
2713
|
this.descripcionActividad = concepto.desact;
|
|
@@ -2547,6 +2720,7 @@ class MConceptoRetencion extends MBasicModel {
|
|
|
2547
2720
|
dataInterface() {
|
|
2548
2721
|
return {
|
|
2549
2722
|
id_empresa: this.idEmpresa.toString(),
|
|
2723
|
+
id_enterprise: this.idEnterprise.toString(),
|
|
2550
2724
|
id_conret: this.idConceptoRetencion.toString(),
|
|
2551
2725
|
codconret: this.codigoConceptoRetencion,
|
|
2552
2726
|
desact: this.descripcionActividad,
|
|
@@ -2640,13 +2814,15 @@ class MComponent extends MBasicModel {
|
|
|
2640
2814
|
class MServiceCharge extends MBasicModel {
|
|
2641
2815
|
constructor(ser) {
|
|
2642
2816
|
super();
|
|
2643
|
-
this.companyId =
|
|
2644
|
-
this.
|
|
2645
|
-
this.
|
|
2817
|
+
this.companyId = 0;
|
|
2818
|
+
this.idEnterprise = 0;
|
|
2819
|
+
this.id = 0;
|
|
2820
|
+
this.serviceId = 0;
|
|
2646
2821
|
this.denomination = '';
|
|
2647
2822
|
this.code = '';
|
|
2648
2823
|
this.status = false;
|
|
2649
2824
|
if (ser) {
|
|
2825
|
+
this.idEnterprise = +ser.id_enterprise;
|
|
2650
2826
|
this.companyId = parseInt(ser.id_empresa);
|
|
2651
2827
|
this.id = parseInt(ser.id_cargo);
|
|
2652
2828
|
this.serviceId = parseInt(ser.id_servicio);
|
|
@@ -2660,6 +2836,7 @@ class MServiceCharge extends MBasicModel {
|
|
|
2660
2836
|
}
|
|
2661
2837
|
interface() {
|
|
2662
2838
|
return {
|
|
2839
|
+
id_enterprise: this.idEnterprise.toString(),
|
|
2663
2840
|
id_empresa: this.companyId.toString(),
|
|
2664
2841
|
id_cargo: this.id.toString(),
|
|
2665
2842
|
id_servicio: this.serviceId.toString(),
|
|
@@ -5260,6 +5437,39 @@ class MComunidad {
|
|
|
5260
5437
|
}
|
|
5261
5438
|
}
|
|
5262
5439
|
|
|
5440
|
+
class MExchangeRate extends MBasicModel {
|
|
5441
|
+
constructor(e) {
|
|
5442
|
+
super();
|
|
5443
|
+
this.codigoMoneda = 0;
|
|
5444
|
+
this.fechaDesde = '1900-01-01';
|
|
5445
|
+
this.horaCambioTasa = '';
|
|
5446
|
+
this.fechaHasta = '1900-01-01';
|
|
5447
|
+
this.montoTasa = 0;
|
|
5448
|
+
this.denominacionMoneda = '';
|
|
5449
|
+
if (e) {
|
|
5450
|
+
this.codigoMoneda = +e.codmon;
|
|
5451
|
+
this.fechaDesde = e.fectasdes;
|
|
5452
|
+
this.horaCambioTasa = e.horcamtas;
|
|
5453
|
+
this.fechaHasta = e.fectashas;
|
|
5454
|
+
this.montoTasa = +e.montascam;
|
|
5455
|
+
this.denominacionMoneda = e.denmon;
|
|
5456
|
+
}
|
|
5457
|
+
else {
|
|
5458
|
+
this.isNew = true;
|
|
5459
|
+
}
|
|
5460
|
+
}
|
|
5461
|
+
dataInterface() {
|
|
5462
|
+
return {
|
|
5463
|
+
codmon: this.codigoMoneda.toString(),
|
|
5464
|
+
fectasdes: this.fechaDesde,
|
|
5465
|
+
horcamtas: this.horaCambioTasa,
|
|
5466
|
+
fectashas: this.fechaHasta,
|
|
5467
|
+
montascam: this.montoTasa.toString(),
|
|
5468
|
+
denmon: this.denominacionMoneda,
|
|
5469
|
+
};
|
|
5470
|
+
}
|
|
5471
|
+
}
|
|
5472
|
+
|
|
5263
5473
|
class SigespService {
|
|
5264
5474
|
// public URL: string = "http://192.168.1.67/sigesp_php";
|
|
5265
5475
|
// usuarioActivo: MUsuario = {
|
|
@@ -5754,6 +5964,14 @@ class SigespService {
|
|
|
5754
5964
|
return res;
|
|
5755
5965
|
}));
|
|
5756
5966
|
}
|
|
5967
|
+
getUserCostCenters(codigo) {
|
|
5968
|
+
return this.http.get(`${this.URL}/dao/scg/control_numero_usuario_dao.php?codigo=${codigo}`, { headers: this.getHttpHeaders() }).pipe(retry(3), catchError(this.handlerError), map((res) => {
|
|
5969
|
+
if (res.success) {
|
|
5970
|
+
res.data = res.data.map(element => new MUsuarioCentroCosto(element));
|
|
5971
|
+
}
|
|
5972
|
+
return res;
|
|
5973
|
+
}));
|
|
5974
|
+
}
|
|
5757
5975
|
/**
|
|
5758
5976
|
* @description Abre el dialog de checkks
|
|
5759
5977
|
* @param columns Columnas que va a tener la tabla
|
|
@@ -6082,6 +6300,15 @@ class SigespService {
|
|
|
6082
6300
|
getMonedas(tipo, id) {
|
|
6083
6301
|
return this.http.get(`${this.URL}/dao/cfg/monedas_dao.php?tipo=${tipo}&id=${id}`, { headers: this.getHttpHeaders() }).pipe(retry(3), catchError(this.handlerError), map((resp) => resp.map(element => new MMoneda(element))));
|
|
6084
6302
|
}
|
|
6303
|
+
/**
|
|
6304
|
+
* @Description: Obtiene la tasa de cambio
|
|
6305
|
+
* @param tipo string
|
|
6306
|
+
* @param id codigo moneda
|
|
6307
|
+
* @returns array/null
|
|
6308
|
+
*/
|
|
6309
|
+
getCurrencyExchangeRate(tipo = null, id) {
|
|
6310
|
+
return this.http.get(`${this.URL}/dao/cfg/sigesp_tasacambio_moneda.php?tipo=${tipo}&id=${id}`, { headers: this.getHttpHeaders() }).pipe(retry(3), catchError(this.handlerError), map((resp) => resp.map(element => new MExchangeRate(element))));
|
|
6311
|
+
}
|
|
6085
6312
|
/**
|
|
6086
6313
|
* @description Abre el dialog de las las cuentas contables (Cuentas Institucionales)
|
|
6087
6314
|
* @return Promise<McuentaInstitucional>
|
|
@@ -6323,10 +6550,23 @@ class SigespService {
|
|
|
6323
6550
|
* @author Carlos Albornoz
|
|
6324
6551
|
* @modificado 10-01-2022
|
|
6325
6552
|
* @param pais: Codigo del pais
|
|
6553
|
+
* @param estado: Codigo del estado
|
|
6554
|
+
|
|
6326
6555
|
|
|
6327
6556
|
*/
|
|
6328
|
-
|
|
6329
|
-
return this.http.get(`${this.URL}/dao/cfg/ciudades_dao.php?pais=${pais}`, { headers: this.getHttpHeaders() }).pipe(retry(3), catchError(this.handlerError), map((res) => res.data.map(e => new MCity(e))));
|
|
6557
|
+
getCity(pais, estado) {
|
|
6558
|
+
return this.http.get(`${this.URL}/dao/cfg/ciudades_dao.php?pais=${pais}&estado=${estado}`, { headers: this.getHttpHeaders() }).pipe(retry(3), catchError(this.handlerError), map((res) => res.data.map(e => new MCity(e))));
|
|
6559
|
+
}
|
|
6560
|
+
/**
|
|
6561
|
+
* @description Obtiene las ciudades
|
|
6562
|
+
* @return Observable<MParish>
|
|
6563
|
+
* @author Dimaly Crespo
|
|
6564
|
+
* @modificado 10-01-2022
|
|
6565
|
+
* @param pais: Codigo del pais
|
|
6566
|
+
|
|
6567
|
+
*/
|
|
6568
|
+
getCommunities(pais, estado, municipio, parroquia) {
|
|
6569
|
+
return this.http.get(`${this.URL}/dao/cfg/comunidades_dao.php?pais=${pais}&estado=${estado}&municipio=${municipio}&parroquia=${parroquia}`, { headers: this.getHttpHeaders() }).pipe(retry(3), catchError(this.handlerError), map((res) => res.data.map(e => new MCommunity(e))));
|
|
6330
6570
|
}
|
|
6331
6571
|
/**
|
|
6332
6572
|
* @description Obtiene los sistemas activas
|
|
@@ -6432,6 +6672,21 @@ class SigespService {
|
|
|
6432
6672
|
return res;
|
|
6433
6673
|
}));
|
|
6434
6674
|
}
|
|
6675
|
+
/**
|
|
6676
|
+
* @description Obtiene los pefijo
|
|
6677
|
+
* @param procede De que módulo procede
|
|
6678
|
+
* @param codsis Código del sistema
|
|
6679
|
+
* @return Observable<MUsuarioPrefijo[]>
|
|
6680
|
+
* @author DimalyCrespo 17-12-2022
|
|
6681
|
+
*/
|
|
6682
|
+
getPrefix(filter = null, code = null) {
|
|
6683
|
+
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) => {
|
|
6684
|
+
if (res.success) {
|
|
6685
|
+
res.data = res.data.map(e => new MPrefijo(e));
|
|
6686
|
+
}
|
|
6687
|
+
return res;
|
|
6688
|
+
}));
|
|
6689
|
+
}
|
|
6435
6690
|
/**
|
|
6436
6691
|
* @description Abre el dialog para buscar los proveedores
|
|
6437
6692
|
* @return Promise<MProveedor>
|
|
@@ -7454,6 +7709,36 @@ AppModule.decorators = [
|
|
|
7454
7709
|
},] }
|
|
7455
7710
|
];
|
|
7456
7711
|
|
|
7712
|
+
class MProcedencia extends MBasicModel {
|
|
7713
|
+
constructor(e) {
|
|
7714
|
+
super();
|
|
7715
|
+
this.procede = '';
|
|
7716
|
+
this.codigoSistema = '';
|
|
7717
|
+
this.operacion = '';
|
|
7718
|
+
this.descripcion = '';
|
|
7719
|
+
this.estatus = 1;
|
|
7720
|
+
if (e) {
|
|
7721
|
+
this.procede = e.procede;
|
|
7722
|
+
this.codigoSistema = e.codsis;
|
|
7723
|
+
this.operacion = e.opeproc;
|
|
7724
|
+
this.descripcion = e.desproc;
|
|
7725
|
+
this.estatus = +e.estdel;
|
|
7726
|
+
}
|
|
7727
|
+
else {
|
|
7728
|
+
this.isNew = true;
|
|
7729
|
+
}
|
|
7730
|
+
}
|
|
7731
|
+
dataInterface() {
|
|
7732
|
+
return {
|
|
7733
|
+
procede: this.procede,
|
|
7734
|
+
codsis: this.codigoSistema,
|
|
7735
|
+
opeproc: this.operacion,
|
|
7736
|
+
desproc: this.descripcion,
|
|
7737
|
+
estdel: this.estatus.toString(),
|
|
7738
|
+
};
|
|
7739
|
+
}
|
|
7740
|
+
}
|
|
7741
|
+
|
|
7457
7742
|
class MAccountMarriage {
|
|
7458
7743
|
constructor(marriage) {
|
|
7459
7744
|
this.idEmpresa = null;
|
|
@@ -7468,10 +7753,14 @@ class MAccountMarriage {
|
|
|
7468
7753
|
class MServiceType extends MBasicModel {
|
|
7469
7754
|
constructor(type = null) {
|
|
7470
7755
|
super();
|
|
7471
|
-
this.id =
|
|
7756
|
+
this.id = 0;
|
|
7757
|
+
this.idEmpresa = 0;
|
|
7758
|
+
this.idEnterprise = 0;
|
|
7472
7759
|
this.denomination = null;
|
|
7473
7760
|
this.observation = null;
|
|
7474
7761
|
if (type) {
|
|
7762
|
+
this.idEmpresa = parseInt(type.id_empresa);
|
|
7763
|
+
this.idEnterprise = +type.id_enterprise;
|
|
7475
7764
|
this.id = parseInt(type.id_tiposervicio);
|
|
7476
7765
|
this.denomination = type.dentipser;
|
|
7477
7766
|
this.observation = type.obstipser;
|
|
@@ -7479,6 +7768,8 @@ class MServiceType extends MBasicModel {
|
|
|
7479
7768
|
}
|
|
7480
7769
|
dataAsInterface() {
|
|
7481
7770
|
return {
|
|
7771
|
+
id_empresa: this.idEmpresa.toString(),
|
|
7772
|
+
id_enterprise: this.idEnterprise.toString(),
|
|
7482
7773
|
dentipser: this.denomination,
|
|
7483
7774
|
id_tiposervicio: this.id.toString(),
|
|
7484
7775
|
obstipser: this.observation
|
|
@@ -7489,15 +7780,17 @@ class MServiceType extends MBasicModel {
|
|
|
7489
7780
|
class MService extends MBasicModel {
|
|
7490
7781
|
constructor(service = null) {
|
|
7491
7782
|
super();
|
|
7492
|
-
this.id =
|
|
7783
|
+
this.id = 0;
|
|
7784
|
+
this.idEnterprise = 0;
|
|
7493
7785
|
this.code = '';
|
|
7494
|
-
this.companyId =
|
|
7495
|
-
this.serviceTypeId =
|
|
7786
|
+
this.companyId = 0;
|
|
7787
|
+
this.serviceTypeId = 0;
|
|
7496
7788
|
this.denomination = '';
|
|
7497
7789
|
this.amount = 0;
|
|
7498
7790
|
this.expensesAccount = '';
|
|
7499
7791
|
this.charges = [];
|
|
7500
7792
|
if (service) {
|
|
7793
|
+
this.idEnterprise = +service.id_enterprise;
|
|
7501
7794
|
this.id = parseInt(service.id_servicio);
|
|
7502
7795
|
this.companyId = parseInt(service.id_empresa);
|
|
7503
7796
|
this.serviceTypeId = parseInt(service.id_tiposervicio);
|
|
@@ -7512,6 +7805,7 @@ class MService extends MBasicModel {
|
|
|
7512
7805
|
}
|
|
7513
7806
|
dataAsInterface() {
|
|
7514
7807
|
return {
|
|
7808
|
+
id_enterprise: this.idEnterprise.toString(),
|
|
7515
7809
|
denser: this.denomination,
|
|
7516
7810
|
id_empresa: this.companyId.toString(),
|
|
7517
7811
|
id_servicio: this.id.toString(),
|
|
@@ -7527,12 +7821,14 @@ class MService extends MBasicModel {
|
|
|
7527
7821
|
class MClause extends MBasicModel {
|
|
7528
7822
|
constructor(clause = null) {
|
|
7529
7823
|
super();
|
|
7530
|
-
this.id =
|
|
7531
|
-
this.companyId =
|
|
7824
|
+
this.id = 0;
|
|
7825
|
+
this.companyId = 0;
|
|
7826
|
+
this.idEnterprise = 0;
|
|
7532
7827
|
this.clause = '';
|
|
7533
7828
|
this.denomination = '';
|
|
7534
7829
|
if (clause) {
|
|
7535
7830
|
this.companyId = parseInt(clause.id_empresa);
|
|
7831
|
+
this.idEnterprise = +clause.id_enterprise;
|
|
7536
7832
|
this.clause = clause.codcla;
|
|
7537
7833
|
this.denomination = clause.dencla;
|
|
7538
7834
|
this.id = parseInt(clause.id_clausula);
|
|
@@ -7543,6 +7839,7 @@ class MClause extends MBasicModel {
|
|
|
7543
7839
|
codcla: this.clause,
|
|
7544
7840
|
dencla: this.denomination,
|
|
7545
7841
|
id_empresa: this.companyId ? this.companyId.toString() : null,
|
|
7842
|
+
id_enterprise: this.idEnterprise.toString(),
|
|
7546
7843
|
id_clausula: this.id ? this.id.toString() : null
|
|
7547
7844
|
};
|
|
7548
7845
|
}
|
|
@@ -7551,12 +7848,14 @@ class MClause extends MBasicModel {
|
|
|
7551
7848
|
class MClauseModality extends MBasicModel {
|
|
7552
7849
|
constructor(mod = null) {
|
|
7553
7850
|
super();
|
|
7554
|
-
this.id =
|
|
7555
|
-
this.companyId =
|
|
7851
|
+
this.id = 0;
|
|
7852
|
+
this.companyId = 0;
|
|
7853
|
+
this.idEnterprise = 0;
|
|
7556
7854
|
this.code = '';
|
|
7557
7855
|
this.denomination = '';
|
|
7558
7856
|
this.clauses = [];
|
|
7559
7857
|
if (mod) {
|
|
7858
|
+
this.idEnterprise = +mod.id_enterprise;
|
|
7560
7859
|
this.id = parseInt(mod.id_modcla);
|
|
7561
7860
|
this.companyId = parseInt(mod.id_empresa);
|
|
7562
7861
|
this.code = mod.codmodcla;
|
|
@@ -7566,6 +7865,7 @@ class MClauseModality extends MBasicModel {
|
|
|
7566
7865
|
}
|
|
7567
7866
|
dataAsInterface() {
|
|
7568
7867
|
return {
|
|
7868
|
+
id_enterprise: this.idEnterprise.toString(),
|
|
7569
7869
|
clausulas: this.clauses.map((e) => e.dataAsInterface()),
|
|
7570
7870
|
codmodcla: this.code,
|
|
7571
7871
|
denmodcla: this.denomination,
|
|
@@ -12838,5 +13138,5 @@ class customPaginator extends MatPaginatorIntl {
|
|
|
12838
13138
|
* Generated bundle index. Do not edit.
|
|
12839
13139
|
*/
|
|
12840
13140
|
|
|
12841
|
-
export { Acciones, AppModule, CausaEgreso, ContabilizacionNomina, CurrencyService, Destino, EstadoCivil, Estatus, EstatusEstudio, EstatusPersonal, EstatusPersonalNomina, EstatusPrestamo, EstatusVacaciones, Estudios, FormaPago, LetraRif, Longitud, MAccountMarriage, MAdministrativeUnit, MAgenciaBanco, MAllStructure, MAnticipoPrestaciones, MArchivoTxtCampo, MArchivosTxt, MAsignacionCargo, MAspectoEvaluacion, MBank, MBankAccountType, MBasicModel, MBeneficiario, MCalculoPrestacion, MCambioEstatusPersonal, MCargaFamiliar, MCargaMasiva, MCargo, MCargoEstructuraOrganizativa, MCargosNominas, MCargosPersonal, MCentroCosto, MCity, MClasificacionObrero, MClasification, MClause, MClauseModality, 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, MDedicacion, MDeduction, MDeductionType, MDefinicionNomina, MDefinicionesBasicas, MDetaContable, MDetaEntrada, MDeudaAnterior, MDocument, MEmpresa, MEncargaduria, MEnterprise, MEntradaSuministros, MEscalaEvaluacion, MEscalaEvaluacionDt, MEstructuraOrganizativa, MEstructuraPresupuestariaFive, MEstructuraPresupuestariaFiveComplete, MEstructuraPresupuestariaFour, MEstructuraPresupuestariaOne, MEstructuraPresupuestariaThree, MEstructuraPresupuestariaTwo, MEstudiosConcursantes, MEstudiosRealizados, 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, MPrestacionesAntiguedad, MPrestamo, MPrestamoAmortizacion, MPrestamosPeriodo, MPrevioEvaluacion, MPrevioEvaluacionDt, MPrimaGrados, MPrimasConcepto, 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, MUnidadTributaria, MUserDetail, MUserPermit, MUsuario, MUsuarioPrefijo, MVacacionesPersonal, Meses, MetodosTicket, Nacionalidad, Nexofamiliar, NivelAcademico, NivelAcademicoFamiliar, Orden, Preaviso, Reporte, SalarioNormal, Sexo, Sexo2, SigespService, Signo, SituacionPersonal, TipoBeneficiario, TipoCestaTicket, TipoCuota, TipoDefiniciones, TipoEmpresa, TipoHorario, TipoJubilacion, TipoNomina, TipoPeriodoNomina, TipoPermiso, TipoVivienda, Turno, academico, camposConstaciaTrabajo, customPaginator, AppComponent as ɵf, SharedModule as ɵg, CatalogoComponent as ɵh, ConfirmComponent as ɵj, IconComponent as ɵk, TableSelectComponent as ɵl, CatalogoEstructurasComponent as ɵm, CatalogoDobleInputComponent as ɵn, IsoCurrencyPipe as ɵo, CustonMaterialModule as ɵp };
|
|
13141
|
+
export { Acciones, AppModule, CausaEgreso, ContabilizacionNomina, CurrencyService, Destino, EstadoCivil, Estatus, EstatusEstudio, EstatusPersonal, EstatusPersonalNomina, EstatusPrestamo, EstatusVacaciones, Estudios, FormaPago, LetraRif, Longitud, MAccountMarriage, MAdministrativeUnit, MAgenciaBanco, MAllStructure, MAnticipoPrestaciones, MArchivoTxtCampo, MArchivosTxt, MAsignacionCargo, MAspectoEvaluacion, MBank, MBankAccountType, MBasicModel, MBeneficiario, MCalculoPrestacion, MCambioEstatusPersonal, MCargaFamiliar, MCargaMasiva, MCargo, MCargoEstructuraOrganizativa, MCargosNominas, MCargosPersonal, MCentroCosto, MCity, MClasificacionObrero, MClasification, MClause, MClauseModality, 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, MDedicacion, MDeduction, MDeductionType, MDefinicionNomina, MDefinicionesBasicas, MDetaContable, MDetaEntrada, MDeudaAnterior, MDocument, MEmpresa, MEncargaduria, MEnterprise, MEntradaSuministros, MEscalaEvaluacion, MEscalaEvaluacionDt, MEstructuraOrganizativa, MEstructuraPresupuestariaFive, MEstructuraPresupuestariaFiveComplete, MEstructuraPresupuestariaFour, MEstructuraPresupuestariaOne, MEstructuraPresupuestariaThree, MEstructuraPresupuestariaTwo, 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, 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, MUnidadTributaria, MUserDetail, MUserPermit, MUsuario, MUsuarioCentroCosto, MUsuarioPrefijo, MVacacionesPersonal, Meses, MetodosTicket, Nacionalidad, Nexofamiliar, NivelAcademico, NivelAcademicoFamiliar, Orden, Preaviso, Reporte, SalarioNormal, Sexo, Sexo2, SigespService, Signo, SituacionPersonal, TipoBeneficiario, TipoCestaTicket, TipoCuota, TipoDefiniciones, TipoEmpresa, TipoHorario, TipoJubilacion, TipoNomina, TipoPeriodoNomina, TipoPermiso, TipoVivienda, Turno, academico, camposConstaciaTrabajo, customPaginator, AppComponent as ɵf, SharedModule as ɵg, CatalogoComponent as ɵh, ConfirmComponent as ɵj, IconComponent as ɵk, TableSelectComponent as ɵl, CatalogoEstructurasComponent as ɵm, CatalogoDobleInputComponent as ɵn, IsoCurrencyPipe as ɵo, CustonMaterialModule as ɵp };
|
|
12842
13142
|
//# sourceMappingURL=sigesp.js.map
|