/// <summary> /// Function to get Account Ledger. /// </summary> /// <returns></returns> public List <LedgerInfo> GetAccountLedger() { try { odbcCon.Open(); OdbcCommand odbcCom = new OdbcCommand("SELECT `$Name`,`$_PrimaryGroup`,`$OnAccountValue`,`$Parent`, `$ClosingBalance`,`$Narration` FROM Ledger WHERE `$Parent` NOT IN (Sundry Creditors,Sundry Debtors)", odbcCon); OdbcDataReader odbcReader = odbcCom.ExecuteReader(); Clear(); LedgerInfo ledgerinfo; while (odbcReader.Read()) { decimal Closing = (odbcReader["`$ClosingBalance`"] != DBNull.Value) ? (Convert.ToDecimal(odbcReader["`$ClosingBalance`"].ToString())) : 0; ledgerinfo = new LedgerInfo(); ledgerinfo.Name = (odbcReader["`$Name`"] != DBNull.Value) ? CheckName(odbcReader["`$Name`"].ToString()) : string.Empty; ledgerinfo.Account_Group = (odbcReader["`$Parent`"] != DBNull.Value) ? CheckName(odbcReader["`$Parent`"].ToString()) : "Primary"; string ss = checking.functionCheckNature(ledgerinfo.Account_Group); ledgerinfo.Opening_Balance = ((ss == "Assets" || ss == "Liabilities" || ss == "NA") ? ((Closing < 0) ? (Closing * -1).ToString() : (Closing).ToString()) : "0"); ledgerinfo.Narration = (odbcReader["`$Narration`"] != DBNull.Value) ? odbcReader["`$Narration`"].ToString() : string.Empty; ledgerinfo.CrorDr = (Closing < 0) ? "Dr" : "Cr"; lstLedgerInfo.Add(ledgerinfo); } odbcCon.Close(); odbcReader.Close(); } catch (Exception ex) { System.Windows.Application.Current.Dispatcher.Invoke((Action)(() => new wdoMessageBox(ex.Message).ShowDialog())); } return(lstLedgerInfo); }
public List <LedgerInfo> GetAccountLedger() { try { oledbcon.Open(); List <string> ff = new List <string>(); ff.Add("Account Ledger Name"); ff.Add("Account Group"); Clear(); LedgerInfo ledgerinfo; string Exceptions = null; if (CheckColumnsMandatory(ff)) { OleDbCommand oledbcmd = new OleDbCommand("select * from [Sheet1$]", oledbcon); OleDbDataReader oledbReader = oledbcmd.ExecuteReader(); Clear(); int i = 0; while (oledbReader.Read()) { try { ledgerinfo = new LedgerInfo(); ledgerinfo.Name = (oledbReader["Account Ledger Name"] != DBNull.Value) ? (oledbReader["Account Ledger Name"].ToString()) : string.Empty; ledgerinfo.Account_Group = (oledbReader["Account Group"] != DBNull.Value) ? (oledbReader["Account Group"].ToString()) : string.Empty; ledgerinfo.Opening_Balance = (oledbReader["Opening Balance"] != DBNull.Value) ? oledbReader["Opening Balance"].ToString() : "0"; ledgerinfo.Narration = (oledbReader["Narration"] != DBNull.Value) ? oledbReader["Narration"].ToString() : string.Empty; ledgerinfo.CrorDr = (oledbReader["CrorDr"] != DBNull.Value) ? oledbReader["CrorDr"].ToString() : string.Empty; lstLedgerInfo.Add(ledgerinfo); } catch (FormatException Ex) { Exceptions += (Exceptions == null) ? ++i + " ." + oledbReader["Account Ledger Name"].ToString() + " row - " + Ex.Message : "\n" + ++i + " ." + oledbReader["Account Ledger Name"].ToString() + " row - " + 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(lstLedgerInfo); }
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; } }