void frmConsultaLibroMayor_Load(object sender, EventArgs e) { try { DateTime fechatemp = DateTime.Today; this.dtpFechaInicial.EditValue = new DateTime(fechatemp.Year, fechatemp.Month, 1); if (fechatemp.Month + 1 < 13) { this.dtpFechaFinal.EditValue = new DateTime(fechatemp.Year, fechatemp.Month + 1, 1).AddDays(-1); } else { this.dtpFechaFinal.EditValue = new DateTime(Convert.ToInt32(fechatemp.Year) + 1, 1, 1).AddDays(-1); } _dtCuenta = CuentaContableDAC.GetData(-1, -1, -1, "*", "*", "*", "*", "*", "*", "*", -1, 0, 1, 1, -1, -1).Tables[0]; this.chkComboCuenta.Properties.DataSource = _dtCuenta; this.chkComboCuenta.Properties.DisplayMember = "Descr"; this.chkComboCuenta.Properties.ValueMember = "IDCuenta"; this.chkComboCuenta.Properties.SeparatorChar = '|'; } catch (Exception ex) { MessageBox.Show(ex.Message); } }
private void FrmConsultaSaldoCentro_Load(object sender, EventArgs e) { try { DateTime fechatemp = DateTime.Today; this.dtpFechaInicial.EditValue = new DateTime(fechatemp.Year, fechatemp.Month, 1); if (fechatemp.Month + 1 < 13) { this.dtpFechaFinal.EditValue = new DateTime(fechatemp.Year, fechatemp.Month + 1, 1).AddDays(-1); } else { this.dtpFechaFinal.EditValue = new DateTime(Convert.ToInt32(fechatemp.Year) + 1, 1, 1).AddDays(-1); } _dtCuenta = CuentaContableDAC.GetData(-1, -1, -1, "*", "*", "*", "*", "*", "*", "*", -1, -1, -1, 1, -1, -1).Tables[0]; Util.Util.ConfigLookupEdit(this.slkupCuenta, _dtCuenta, "Descr", "IDCuenta"); Util.Util.ConfigLookupEditSetViewColumns(this.slkupCuenta, "[{'ColumnCaption':'Cuenta','ColumnField':'Cuenta','width':30},{'ColumnCaption':'Descripcion','ColumnField':'Descr','width':70}]"); this.slkupCuenta.Properties.ShowClearButton = true; this.slkupCuenta.Properties.PopupFormSize = new Size(400, 300); this.slkupCuenta.Properties.BestFitMode = DevExpress.XtraEditors.Controls.BestFitMode.BestFit; } catch (Exception ex) { MessageBox.Show(ex.Message); } }
private void PopulateGrid() { _dsCuenta = CuentaContableDAC.GetData(-1, -1, -1, "*", "*", "*", "*", "*", "*", "*", -1, -1, -1, -1, -1, -1); _dtCuenta = _dsCuenta.Tables[0]; this.dtg.DataSource = null; this.dtg.DataSource = _dtCuenta; this.gridView.SelectRow(-1); PopulateDataSearchLookup(); }
private void FrmReporteDelMayor_Load(object sender, EventArgs e) { try { this.FormBorderStyle = FormBorderStyle.FixedSingle; this.MaximizeBox = false; this.StartPosition = FormStartPosition.CenterScreen; //Obtener los datos _dtCentroCosto = CentroCostoDAC.GetData(-1, "*", "*", "*", "*", 0).Tables[0]; //No estamos tomando los acumuladores _dtCuentaContable = CuentaContableDAC.GetData(-1, -1, -1, "*", "*", "*", "*", "*", "*", "*", -1, -1, -1, 1, -1, -1).Tables[0]; Util.Util.ConfigLookupEdit(this.slkupCentoCostoDesde, _dtCentroCosto, "Descr", "IDCentro"); Util.Util.ConfigLookupEditSetViewColumns(this.slkupCentoCostoDesde, "[{'ColumnCaption':'Centro','ColumnField':'Centro','width':30},{'ColumnCaption':'Descripcion','ColumnField':'Descr','width':70}]"); Util.Util.ConfigLookupEdit(this.slkupCentroCostoHasta, _dtCentroCosto, "Descr", "IDCentro"); Util.Util.ConfigLookupEditSetViewColumns(this.slkupCentroCostoHasta, "[{'ColumnCaption':'Centro','ColumnField':'Centro','width':30},{'ColumnCaption':'Descripcion','ColumnField':'Descr','width':70}]"); Util.Util.ConfigLookupEdit(this.slkupCuentaContableDesde, _dtCuentaContable, "Descr", "IDCuenta"); Util.Util.ConfigLookupEditSetViewColumns(this.slkupCuentaContableDesde, "[{'ColumnCaption':'Cuenta','ColumnField':'Cuenta','width':30},{'ColumnCaption':'Descripcion','ColumnField':'Descr','width':70}]"); Util.Util.ConfigLookupEdit(this.slkupCuentaContableHasta, _dtCuentaContable, "Descr", "IDCuenta"); Util.Util.ConfigLookupEditSetViewColumns(this.slkupCuentaContableHasta, "[{'ColumnCaption':'Cuenta','ColumnField':'Cuenta','width':30},{'ColumnCaption':'Descripcion','ColumnField':'Descr','width':70}]"); this.rbTotalesDiarios.Checked = true; this.rgImprimirCuentas.SelectedIndex = 0; this.rgCuentasSinMovimientos.SelectedIndex = 0; this.chkActivo.Checked = true; this.chkPasivo.Checked = true; this.chkGasto.Checked = true; this.chkIngreso.Checked = true; this.chkOrden.Checked = true; this.chkPatrimonio.Checked = true; DateTime fechatemp = DateTime.Today; this.dtpFechaDesde.EditValue = new DateTime(fechatemp.Year, fechatemp.Month, 1); if (fechatemp.Month + 1 < 13) { this.dtpFechaHasta.EditValue = new DateTime(fechatemp.Year, fechatemp.Month + 1, 1).AddDays(-1); } else { this.dtpFechaHasta.EditValue = new DateTime(fechatemp.Year + 1, 1, 1).AddDays(-1); } this.rgCuentasSinMovimientos.SelectedIndex = 1; } catch (Exception ex) { MessageBox.Show(ex.Message); } }
private void popupCuentaContable_Load(object sender, EventArgs e) { _dtCuentas = CuentaContableDAC.GetData(-1, -1, -1, "*", "*", "*", "*", "*", "*", "*", -1, -1, -1, 1, -1, -1).Tables[0]; // _dtCuentasConstante = _dtCuentas.Clone(); this.gridCuentas.DataSource = _dtCuentas; if (sCuentasSelected != "") { CheckElements(); } }
private void FrmReporteMayorporAsiento_Load(object sender, EventArgs e) { try { this.FormBorderStyle = FormBorderStyle.FixedSingle; this.MaximizeBox = false; this.StartPosition = FormStartPosition.CenterScreen; //Obtener los datos _dtCentro = CentroCostoDAC.GetData(-1, "*", "*", "*", "*", 0).Tables[0]; //No estamos tomando los acumuladores _dtCuenta = CuentaContableDAC.GetData(-1, -1, -1, "*", "*", "*", "*", "*", "*", "*", -1, -1, -1, 1, -1, -1).Tables[0]; _dtTipoAsiento = TipoAsientoDAC.GetData().Tables[0]; Util.Util.ConfigLookupEdit(this.slkupCentroDesde, _dtCentro, "Descr", "IDCentro"); Util.Util.ConfigLookupEditSetViewColumns(this.slkupCentroDesde, "[{'ColumnCaption':'Centro','ColumnField':'Centro','width':30},{'ColumnCaption':'Descripcion','ColumnField':'Descr','width':70}]"); Util.Util.ConfigLookupEdit(this.slkupCentroHasta, _dtCentro, "Descr", "IDCentro"); Util.Util.ConfigLookupEditSetViewColumns(this.slkupCentroHasta, "[{'ColumnCaption':'Centro','ColumnField':'Centro','width':30},{'ColumnCaption':'Descripcion','ColumnField':'Descr','width':70}]"); Util.Util.ConfigLookupEdit(this.slkupCuentaDesde, _dtCuenta, "Descr", "IDCuenta"); Util.Util.ConfigLookupEditSetViewColumns(this.slkupCuentaDesde, "[{'ColumnCaption':'Cuenta','ColumnField':'Cuenta','width':30},{'ColumnCaption':'Descripcion','ColumnField':'Descr','width':70}]"); Util.Util.ConfigLookupEdit(this.slkupCuentaHasta, _dtCuenta, "Descr", "IDCuenta"); Util.Util.ConfigLookupEditSetViewColumns(this.slkupCuentaHasta, "[{'ColumnCaption':'Cuenta','ColumnField':'Cuenta','width':30},{'ColumnCaption':'Descripcion','ColumnField':'Descr','width':70}]"); Util.Util.ConfigLookupEdit(this.slkupTipoAsiento, _dtTipoAsiento, "Descr", "Tipo"); Util.Util.ConfigLookupEditSetViewColumns(this.slkupTipoAsiento, "[{'ColumnCaption':'Tipo','ColumnField':'Tipo','width':30},{'ColumnCaption':'Descripcion','ColumnField':'Descr','width':70}]"); DateTime fechatemp = DateTime.Today; this.dtpFechaDesde.EditValue = new DateTime(fechatemp.Year, fechatemp.Month, 1); if (fechatemp.Month + 1 < 13) { this.dtpFechaHasta.EditValue = new DateTime(fechatemp.Year, fechatemp.Month + 1, 1).AddDays(-1); } else { this.dtpFechaHasta.EditValue = new DateTime(fechatemp.Year + 1, 1, 1).AddDays(-1); } } catch (Exception ex) { MessageBox.Show(ex.Message); } }
private void FrmParametrosContables_Load(object sender, EventArgs e) { this.FormBorderStyle = FormBorderStyle.FixedSingle; this.MaximizeBox = false; this.StartPosition = FormStartPosition.CenterScreen; CargarParametros(); //configurar los searchlokup _lstCuentasContable = CuentaContableDAC.GetData(-1, -1, -1, "*", "*", "*", "*", "*", "*", "*", -1, -1, 1, 1, -1, -1).Tables["Data"]; Util.Util.ConfigLookupEdit(this.slkupCuentaUtilidadAcumulada, _lstCuentasContable, "Descr", "IDCuenta"); Util.Util.ConfigLookupEditSetViewColumns(this.slkupCuentaUtilidadAcumulada, "[{'ColumnCaption':'Cuenta','ColumnField':'Cuenta','width':30},{'ColumnCaption':'Descripción','ColumnField':'Descr','width':70}]"); Util.Util.ConfigLookupEdit(this.slkupCuentaUtilidadPeriodo, _lstCuentasContable, "Descr", "IDCuenta"); Util.Util.ConfigLookupEditSetViewColumns(this.slkupCuentaUtilidadPeriodo, "[{'ColumnCaption':'Cuenta','ColumnField':'Cuenta','width':30},{'ColumnCaption':'Descripción','ColumnField':'Descr','width':70}]"); Util.Util.ConfigLookupEdit(this.slkupTipoCambio, TipoCambioDAC.GetData("*").Tables[0], "Descr", "IDTipoCambio"); Util.Util.ConfigLookupEditSetViewColumns(this.slkupTipoCambio, "[{'ColumnCaption':'ID','ColumnField':'IDTipoCambio','width':30},{'ColumnCaption':'Descripción','ColumnField':'Descr','width':70}]"); this.slkupCuentaUtilidadAcumulada.Properties.ShowClearButton = true; this.slkupCuentaUtilidadPeriodo.Properties.ShowClearButton = true; }