/// <summary> /// Function to get Account group. /// </summary> /// <returns></returns> public List <accountGroupInfo> GetAccountGroup() { try { odbcCon.Open(); OdbcCommand odbcCom = new OdbcCommand("SELECT `$Name`,`$Parent`,`$AffectsGrossProfit`,`$Narration`,`$_PrimaryGroup` FROM Groups", odbcCon); OdbcDataReader odbcReader = odbcCom.ExecuteReader(); Clear(); accountGroupInfo infoaccountgroup; while (odbcReader.Read()) { infoaccountgroup = new accountGroupInfo(); infoaccountgroup.Name = (odbcReader["`$Name`"] != DBNull.Value) ? CheckName(odbcReader["`$Name`"].ToString()) : string.Empty; infoaccountgroup.Affect_Gross_Profit = (odbcReader["`$AffectsGrossProfit`"] != DBNull.Value) ? (odbcReader["`$AffectsGrossProfit`"].ToString() == "1").ToString() : "false"; infoaccountgroup.Under = (odbcReader["`$Parent`"] != DBNull.Value) ? CheckName(odbcReader["`$Parent`"].ToString()) : string.Empty; infoaccountgroup.Narration = (odbcReader["`$Narration`"] != DBNull.Value) ? odbcReader["`$Narration`"].ToString() : string.Empty; infoaccountgroup.Nature = (odbcReader["`$Name`"] != DBNull.Value) ? ((GetNature(infoaccountgroup.Name.ToLower()) == string.Empty) ? GetNature(infoaccountgroup.Under.ToLower()) : GetNature(infoaccountgroup.Name.ToLower())) : "Primary"; lstAccountGroup.Add(infoaccountgroup); } odbcCon.Close(); odbcReader.Close(); } catch (Exception ex) { System.Windows.Application.Current.Dispatcher.Invoke((Action)(() => new wdoMessageBox(ex.Message).ShowDialog())); } return(lstAccountGroup); }
public List <accountGroupInfo> GetAccountGroup() { try { oledbcon.Open(); List <string> ff = new List <string>(); ff.Add("Account Group Name"); ff.Add("Under"); string Exceptions = null; if (CheckColumnsMandatory(ff)) { OleDbCommand oledbcmd = new OleDbCommand("select * from [Sheet1$]", oledbcon); OleDbDataReader oledbReader = oledbcmd.ExecuteReader(); Clear(); accountGroupInfo infoAccountGroup; while (oledbReader.Read()) { try { infoAccountGroup = new accountGroupInfo(); infoAccountGroup.Name = (oledbReader["Account Group Name"] != DBNull.Value) ? (oledbReader["Account Group Name"].ToString()) : string.Empty; infoAccountGroup.Affect_Gross_Profit = (oledbReader["Affect Gross Profit"] != DBNull.Value) ? oledbReader["Affect Gross Profit"].ToString() : "false"; infoAccountGroup.Under = (oledbReader["Under"] != DBNull.Value) ? oledbReader["Under"].ToString() : string.Empty; infoAccountGroup.Narration = (oledbReader["Narration"] != DBNull.Value) ? oledbReader["Narration"].ToString() : string.Empty; infoAccountGroup.Nature = GetNature(infoAccountGroup.Under.ToLower()); lstAccountGroup.Add(infoAccountGroup); } catch (FormatException Ex) { Exceptions += (Exceptions == null) ? oledbReader["Account Group Name"].ToString() + " - " + Ex.Message : "\n" + oledbReader["Account Group Name"].ToString() + " - " + Ex.Message; } } oledbReader.Close(); if (Exceptions != null) { System.Windows.Application.Current.Dispatcher.Invoke((Action)(() => new wdoMessageBox(Exceptions).ShowDialog())); } } else { System.Windows.Application.Current.Dispatcher.Invoke((Action)(() => new wdoMessageBox("Mandratory field are Miss matching...").ShowDialog())); } } catch (Exception ex) { System.Windows.Application.Current.Dispatcher.Invoke((Action)(() => new wdoMessageBox(ex.Message).ShowDialog())); } finally { if (oledbcon != null && oledbcon.State == ConnectionState.Open) { oledbcon.Close(); } } return(lstAccountGroup); }
private void DataLoading(DataGridRowEventArgs e) { switch (dgDatas.ToolTip.ToString()) { case ("Pricing Level"): pricelevelinfo = e.Row.Item as pricingLevelInfo; if (pricelevelinfo != null) { e.Row.Background = mastervalidation.PriceLevelValidation(pricelevelinfo, out toolTip); e.Row.ToolTip = toolTip; } else { e.Row.Background = Brushes.Wheat; e.Row.ToolTip = null; } break; case ("Customer"): ledgerinfoforcustomer = e.Row.Item as CustomerSupplierInfo; if (ledgerinfoforcustomer != null) { e.Row.Background = mastervalidation.CustomerValidations(ledgerinfoforcustomer, out toolTip); e.Row.ToolTip = toolTip; } else { e.Row.Background = Brushes.Wheat; e.Row.ToolTip = null; } break; case ("Supplier"): ledgerinfoforcustomer = e.Row.Item as CustomerSupplierInfo; if (ledgerinfoforcustomer != null) { e.Row.Background = mastervalidation.SupplierValidations(ledgerinfoforcustomer, out toolTip); e.Row.ToolTip = toolTip; } else { e.Row.Background = Brushes.Wheat; e.Row.ToolTip = null; } break; case ("Account Groups"): accountgroupinfo = e.Row.Item as accountGroupInfo; if (accountgroupinfo != null) { e.Row.Background = mastervalidation.AccountGroupValidation(accountgroupinfo, out toolTip); e.Row.ToolTip = toolTip; } else { e.Row.Background = Brushes.Wheat; e.Row.ToolTip = null; } break; case ("Account Ledgers"): accountledgerinfo = e.Row.Item as LedgerInfo; if (accountledgerinfo != null) { e.Row.Background = mastervalidation.LedgerValidations(accountledgerinfo, out toolTip); e.Row.ToolTip = toolTip; } else { e.Row.Background = Brushes.Wheat; e.Row.ToolTip = null; } break; case ("Product Groups"): productgroupinfo = e.Row.Item as productGroupInfo; if (productgroupinfo != null) { e.Row.Background = mastervalidation.ProductGroupValidation(productgroupinfo, out toolTip); e.Row.ToolTip = toolTip; } else { e.Row.Background = Brushes.Wheat; e.Row.ToolTip = null; } break; case ("Units"): unitinfo = e.Row.Item as unitsInfo; if (unitinfo != null) { e.Row.Background = mastervalidation.UnitValidation(unitinfo, out toolTip); e.Row.ToolTip = toolTip; } else { e.Row.Background = Brushes.Wheat; e.Row.ToolTip = null; } break; case ("Godowns"): godowninfo = e.Row.Item as godownInfo; if (godowninfo != null && godowninfo.Godown_Name != null) { e.Row.Background = mastervalidation.GodownValidation(godowninfo, out toolTip); e.Row.ToolTip = toolTip; } else { e.Row.Background = Brushes.Wheat; e.Row.ToolTip = null; } break; case ("Products"): productinfo = e.Row.Item as productInfo; if (productinfo != null) { e.Row.Background = mastervalidation.ProductValidation(productinfo, out toolTip); e.Row.ToolTip = toolTip; } else { e.Row.Background = Brushes.Wheat; e.Row.ToolTip = null; } break; case ("Stock"): Stockinfo = e.Row.Item as StockInfo; if (Stockinfo != null) { e.Row.Background = mastervalidation.StockValidation(Stockinfo, out toolTip); e.Row.ToolTip = toolTip; } else { e.Row.Background = Brushes.Wheat; e.Row.ToolTip = null; } break; case ("Batches"): batchinfo = e.Row.Item as batchesInfo; if (batchinfo != null) { e.Row.Background = mastervalidation.BatchValidation(batchinfo, out toolTip); e.Row.ToolTip = toolTip; } else { e.Row.Background = Brushes.Wheat; e.Row.ToolTip = null; } break; case ("Currency"): currencyinfo = e.Row.Item as currencyInfo; if (currencyinfo != null) { if (mastervalidation.CurrencyValidation(currencyinfo)) { e.Row.Background = Brushes.LightGreen; } else { e.Row.Background = Brushes.LightCoral; e.Row.ToolTip = "Currency exists"; } } else { e.Row.Background = Brushes.Wheat; e.Row.ToolTip = null; } break; case ("Voucher Type"): vouchertype = e.Row.Item as voucherTypesInfo; if (vouchertype != null) { e.Row.Background = mastervalidation.VoucherTypeValidation(vouchertype, out toolTip); e.Row.ToolTip = toolTip; } else { e.Row.Background = Brushes.Wheat; e.Row.ToolTip = null; } break; case ("SalesMan"): employeeinfo = e.Row.Item as EmployeeInfo; if (employeeinfo != null && employeeinfo.name != null) { e.Row.Background = mastervalidation.SalesmanValidation(employeeinfo, out toolTip); e.Row.ToolTip = toolTip; } else { e.Row.Background = Brushes.Wheat; e.Row.ToolTip = null; } break; default: break; } }