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.
@@ -1839,6 +1839,8 @@ class MConfigurationSPG {
1839
1839
  this.editable = false;
1840
1840
  this.codigoEnterprise = '';
1841
1841
  this.denominacionEnterprise = '';
1842
+ this.cuentaContableDiferencial = '';
1843
+ this.denominacionCuentaContableDiferencial = '';
1842
1844
  if (configuration) {
1843
1845
  this.idEnterprise = +configuration.id_enterprise;
1844
1846
  this.periodoFiscal = +configuration.perfiscal;
@@ -1879,11 +1881,13 @@ class MConfigurationSPG {
1879
1881
  this.denominacionFuenteFinanciaminto = configuration.denfuefin;
1880
1882
  this.codigoFuenteFinanciaminto = configuration.codigoftefin;
1881
1883
  this.denominacionCentroCosto = configuration.dencencos;
1882
- this.codigoCentroCosto = configuration.denominacion;
1884
+ this.codigoCentroCosto = configuration.codcencos;
1883
1885
  this.estructuraPresupuestaria = configuration.estpre;
1884
1886
  this.editable = configuration.editable == '0';
1885
1887
  this.codigoEnterprise = configuration.codigo;
1886
1888
  this.denominacionEnterprise = configuration.titulo;
1889
+ this.cuentaContableDiferencial = configuration.sc_cuenta;
1890
+ this.denominacionCuentaContableDiferencial = configuration.denominacion;
1887
1891
  }
1888
1892
  }
1889
1893
  dataInteface() {
@@ -7377,7 +7381,7 @@ class SigespService {
7377
7381
  * @author Carlos Albornoz
7378
7382
  * @params filtro: Indica bajo que parametros se va a filtrar el catalogo
7379
7383
  */
7380
- openCatalogoCuentasPresuspuesto(titulo, filtro = null, ancho = '1000px', idEnterprise, periodoFiscal) {
7384
+ openCatalogoCuentasPresuspuesto(titulo, idEnterprise, periodoFiscal, filtro = null, ancho = '1000px') {
7381
7385
  return __awaiter(this, void 0, void 0, function* () {
7382
7386
  let cuentas = [];
7383
7387
  yield this.getCuentasPresupuesto(idEnterprise, periodoFiscal).toPromise().then((res) => {