sigesp 1.1.35-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.
@@ -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.denominacion;
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() {
@@ -7350,7 +7354,7 @@ class SigespService {
7350
7354
  * @author Carlos Albornoz
7351
7355
  * @params filtro: Indica bajo que parametros se va a filtrar el catalogo
7352
7356
  */
7353
- async openCatalogoCuentasPresuspuesto(titulo, filtro = null, ancho = '1000px', idEnterprise, periodoFiscal) {
7357
+ async openCatalogoCuentasPresuspuesto(titulo, idEnterprise, periodoFiscal, filtro = null, ancho = '1000px') {
7354
7358
  let cuentas = [];
7355
7359
  await this.getCuentasPresupuesto(idEnterprise, periodoFiscal).toPromise().then((res) => {
7356
7360
  cuentas = res;