sigesp 1.1.34-20241216 → 1.1.37-20241221
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/ConfigurationSPG.mjs +1 -1
- package/esm2020/lib/core/models/SPG/configurationSPG.model.mjs +6 -2
- package/fesm2015/sigesp.mjs +5 -1
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +5 -1
- package/fesm2020/sigesp.mjs.map +1 -1
- package/lib/core/interfaces/ConfigurationSPG.d.ts +3 -1
- package/lib/core/models/SPG/configurationSPG.model.d.ts +2 -0
- package/package.json +1 -1
package/fesm2020/sigesp.mjs
CHANGED
|
@@ -1832,6 +1832,8 @@ class MConfigurationSPG {
|
|
|
1832
1832
|
this.editable = false;
|
|
1833
1833
|
this.codigoEnterprise = '';
|
|
1834
1834
|
this.denominacionEnterprise = '';
|
|
1835
|
+
this.cuentaContableDiferencial = '';
|
|
1836
|
+
this.denominacionCuentaContableDiferencial = '';
|
|
1835
1837
|
if (configuration) {
|
|
1836
1838
|
this.idEnterprise = +configuration.id_enterprise;
|
|
1837
1839
|
this.periodoFiscal = +configuration.perfiscal;
|
|
@@ -1872,11 +1874,13 @@ class MConfigurationSPG {
|
|
|
1872
1874
|
this.denominacionFuenteFinanciaminto = configuration.denfuefin;
|
|
1873
1875
|
this.codigoFuenteFinanciaminto = configuration.codigoftefin;
|
|
1874
1876
|
this.denominacionCentroCosto = configuration.dencencos;
|
|
1875
|
-
this.codigoCentroCosto = configuration.
|
|
1877
|
+
this.codigoCentroCosto = configuration.codcencos;
|
|
1876
1878
|
this.estructuraPresupuestaria = configuration.estpre;
|
|
1877
1879
|
this.editable = configuration.editable == '0';
|
|
1878
1880
|
this.codigoEnterprise = configuration.codigo;
|
|
1879
1881
|
this.denominacionEnterprise = configuration.titulo;
|
|
1882
|
+
this.cuentaContableDiferencial = configuration.sc_cuenta;
|
|
1883
|
+
this.denominacionCuentaContableDiferencial = configuration.denominacion;
|
|
1880
1884
|
}
|
|
1881
1885
|
}
|
|
1882
1886
|
dataInteface() {
|