using System; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.IO; using System.Linq; using System.Web.Script.Serialization; using System.Windows.Forms; using Tanshu.Accounts.Entities; using Tanshu.Accounts.Repository; namespace Tanshu.Accounts.Management { public partial class ManagementForm : Form { Stopwatch _stopwatch; Stopwatch _totalStopwatch; private BackgroundWorker bwGo = new BackgroundWorker(); private BackgroundWorker bwExcel = new BackgroundWorker(); private BackgroundWorker bwFinalSanction = new BackgroundWorker(); public ManagementForm() { InitializeComponent(); bwGo.WorkerReportsProgress = true; bwGo.WorkerSupportsCancellation = true; bwGo.DoWork += new DoWorkEventHandler(DoGo); bwGo.ProgressChanged += new ProgressChangedEventHandler(bwGo_ProgressChanged); bwGo.RunWorkerCompleted += new RunWorkerCompletedEventHandler(bwGo_RunWorkerCompleted); bwExcel.WorkerReportsProgress = true; bwExcel.WorkerSupportsCancellation = true; bwExcel.DoWork += new DoWorkEventHandler(DoExcel); bwExcel.ProgressChanged += new ProgressChangedEventHandler(bwGo_ProgressChanged); bwExcel.RunWorkerCompleted += new RunWorkerCompletedEventHandler(bwExcel_RunWorkerCompleted); bwFinalSanction.WorkerReportsProgress = true; bwFinalSanction.WorkerSupportsCancellation = false; bwFinalSanction.DoWork += new DoWorkEventHandler(DoFinalSanction); bwFinalSanction.ProgressChanged += new ProgressChangedEventHandler(bwFinalSanction_ProgressChanged); bwFinalSanction.RunWorkerCompleted += new RunWorkerCompletedEventHandler(bwFinalSanction_RunWorkerCompleted); } private void ManagementForm_Load(object sender, EventArgs e) { dtpStart.Value = DateTime.Today; dtpFinish.Value = DateTime.Today; } #region Go private void btnGo_Click(object sender, EventArgs e) { if (btnGo.Text == "Go") { txtStatus.Text = ""; btnGo.Text = "Cancel"; _stopwatch = Stopwatch.StartNew(); _totalStopwatch = Stopwatch.StartNew(); bwGo.RunWorkerAsync(); } else bwGo.CancelAsync(); } private void btnExcel_Click(object sender, EventArgs e) { if (btnExcel.Text == "Excel") { txtStatus.Text = ""; btnExcel.Text = "Cancel"; _stopwatch = Stopwatch.StartNew(); _totalStopwatch = Stopwatch.StartNew(); bwExcel.RunWorkerAsync(); } else bwExcel.CancelAsync(); } private void DoGo(object sender, DoWorkEventArgs e) { var beer = GetBeer(); var sale = GetSale(); var credit = GetCredit(); var info = string.Empty; foreach (var item in sale) { var startDate = item.StartDate; var finishDate = item.FinishDate; var sDate = startDate.AddHours(7); var fDate = finishDate.AddDays(1).AddHours(7); int count = 0; bwGo.ReportProgress(++count, "Starting on " + startDate.ToShortDateString() + " to " + finishDate.ToShortDateString()); using (var bi = new ManagementBI()) { bwGo.ReportProgress(++count, "Clearing Modifiers"); bi.ClearModifiers(sDate, fDate); bwGo.ReportProgress(++count, " -- Modifiers Cleared"); if (bwGo.CancellationPending == true) { e.Cancel = true; return; } bwGo.ReportProgress(++count, "Deleting Tobacco"); bi.DeleteTobacco(sDate, fDate); bwGo.ReportProgress(++count, " -- Tobacco Deleted"); if (bwGo.CancellationPending == true) { e.Cancel = true; return; } bwGo.ReportProgress(++count, "Deleting Reprints"); bi.DeleteReprints(sDate, fDate); bwGo.ReportProgress(++count, " -- Reprints Deleted"); if (bwGo.CancellationPending == true) { e.Cancel = true; return; } bwGo.ReportProgress(++count, "Deleting Voids"); bi.DeleteVoid(sDate, fDate); bwGo.ReportProgress(++count, " -- Voids Deleted"); if (bwGo.CancellationPending == true) { e.Cancel = true; return; } bwGo.ReportProgress(++count, "Combining Kots"); bi.CombineKots(sDate, fDate); bwGo.ReportProgress(++count, " -- Kots Combined"); if (bwGo.CancellationPending == true) { e.Cancel = true; return; } bwGo.ReportProgress(++count, "Removing Blank Kots"); bi.RemoveBlankKots(sDate, fDate); bwGo.ReportProgress(++count, " -- Blank Kots Removed"); if (bwGo.CancellationPending == true) { e.Cancel = true; return; } bwGo.ReportProgress(++count, "Moving Staff to NC"); bi.MoveStaffToNc(sDate, fDate); bwGo.ReportProgress(++count, " -- Staff Moved"); if (bwGo.CancellationPending == true) { e.Cancel = true; return; } bwGo.ReportProgress(++count, "Starting beer"); foreach (var beerDate in beer) { if (beerDate.Date < startDate || beerDate.Date > finishDate) continue; bi.SetBeer(beerDate.Date.AddHours(7), beerDate.Date.AddDays(1).AddHours(7), beerDate.Quantity); bwGo.ReportProgress(++count, "Beer set for " + beerDate.Date.ToShortDateString()); if (bwGo.CancellationPending == true) { e.Cancel = true; return; } } bwGo.ReportProgress(++count, "Removing Blank Kots"); bi.RemoveBlankKots(sDate, fDate); bwGo.ReportProgress(++count, " -- Blank Kots Removed"); if (bwGo.CancellationPending == true) { e.Cancel = true; return; } foreach (var saleItem in item.Sale.Where(x => x.IsLiq)) { bi.LiqNcSwap(saleItem.Rate, saleItem.Amount, sDate, fDate); bwGo.ReportProgress(++count, "Liq NC Swap " + saleItem.Rate.ToString()); if (bwGo.CancellationPending == true) { e.Cancel = true; return; } } IList creditJ = credit.Where(x => x.Date >= startDate && x.Date <= finishDate).ToList(); bi.SetQuantityAndDiscount(item.Sale, creditJ, startDate, finishDate); bwGo.ReportProgress(++count, "Sale Done"); if (bwGo.CancellationPending == true) { e.Cancel = true; return; } bi.RemoveBlankKots(sDate, fDate); bwGo.ReportProgress(++count, "Blank Kots Removed"); if (bwGo.CancellationPending == true) { e.Cancel = true; return; } bi.IncreaseLiqIfLess(item.Sale.Where(x => x.IsLiq).ToList(), startDate, finishDate); bwGo.ReportProgress(++count, "Sale Done"); if (bwGo.CancellationPending == true) { e.Cancel = true; return; } bwGo.ReportProgress(++count, "Setting Payments"); bi.SetPayments(sDate, fDate); bwGo.ReportProgress(++count, " -- Payments Set"); bi.SaveChanges(); } bwGo.ReportProgress(++count, "Cleanup done"); } } private void DoExcel(object sender, DoWorkEventArgs e) { var startDate = dtpStart.Value.Date; var finishDate = dtpFinish.Value.Date; string sheet; int count = 0; var info = new List(); var rates = new List(); using (var bi = new ManagementBI()) { for (var date = startDate; date <= finishDate; date = date.AddDays(1)) { if (bwExcel.CancellationPending == true) { e.Cancel = true; return; } bwExcel.ReportProgress(++count, "Getting data for " + date.ToShortDateString()); var currentStart = date.AddHours(7); var currentFinish = date.AddDays(1).AddHours(7); var bills = bi.GetMinMaxBills(currentStart, currentFinish); if (bills == null) continue; var saleList = bi.GetSaleAndVat(currentStart, currentFinish); var serviceTax = bi.GetServiceTax(currentStart, currentFinish); var ei = new ExcelInfo() { Date = date, StartBill = bi.FullBillID(bills.StartBill, VoucherType.Regular), FinishBill = bi.FullBillID(bills.FinishBill, VoucherType.Regular), SaleAndVat = new Dictionary(), ServiceTax = serviceTax }; foreach (var item in saleList) { if (!rates.Contains(item.Rate)) rates.Add(item.Rate); ei.SaleAndVat.Add(item.Rate, item); } info.Add(ei); } rates.Sort(); sheet = "Date\tBill Start\tBill Final\t"; foreach (var item in rates) { sheet += string.Format("Sale {0:#0.00}%\tVat {0:#0.00}%\t", item * 100); } sheet += "Service Tax\n"; foreach (var item in info) { if (bwExcel.CancellationPending == true) { e.Cancel = true; return; } bwExcel.ReportProgress(++count, "Compiling data for " + item.Date.ToShortDateString()); sheet += string.Format("{0:dd-MMM-yyyy}\t'{1}\t'{2}\t", item.Date, item.StartBill, item.FinishBill); foreach (var rate in rates) { if (item.SaleAndVat.ContainsKey(rate)) sheet += string.Format("{0:#0}\t{1:#0}\t", Math.Round(item.SaleAndVat[rate].Net), Math.Round(item.SaleAndVat[rate].Vat)); else sheet += "0\t0\t"; } sheet += string.Format("{0:#0}\n", Math.Round(item.ServiceTax)); } } e.Result = sheet; } private void bwGo_ProgressChanged(object sender, ProgressChangedEventArgs e) { var time = (_stopwatch.ElapsedMilliseconds / 1000).ToString() + "s / " + (_totalStopwatch.ElapsedMilliseconds / 1000).ToString() + "s"; _stopwatch.Reset(); _stopwatch.Start(); txtStatus.Text = (string)e.UserState + " " + time + " \r\n" + txtStatus.Text; } private void bwGo_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e) { _stopwatch.Stop(); _totalStopwatch.Stop(); btnGo.Text = "Go"; if (!e.Cancelled) txtStatus.Text = "Done !!!\r\n" + txtStatus.Text; else txtStatus.Text = "Cancelled :(\r\n" + txtStatus.Text; } private void bwExcel_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e) { _stopwatch.Stop(); _totalStopwatch.Stop(); btnExcel.Text = "Excel"; if (!e.Cancelled) { txtStatus.Text = "Done !!!\r\n" + txtStatus.Text; var sheet = (string)e.Result; Clipboard.SetText(sheet, TextDataFormat.Text); } else { txtStatus.Text = "Cancelled :(\r\n" + txtStatus.Text; } } #endregion #region Get Data private IList GetSale() { var currentDirectory = AppDomain.CurrentDomain.BaseDirectory; var sale = Path.Combine(currentDirectory, "sale.json"); if (!File.Exists(sale)) throw new ArgumentException("Sale not found!"); var startDate = dtpStart.Value.Date; var finishDate = dtpFinish.Value.Date; var fileContents = new StreamReader(File.OpenRead(sale)).ReadToEnd(); JavaScriptSerializer jss = new JavaScriptSerializer(); var data = jss.Deserialize>(fileContents); IList list = new List(); foreach (var item in data) { if (item.FinishDate.Date < startDate.Date || item.StartDate.Date > finishDate.Date) continue; list.Add(item); } return list; } private IList GetCredit() { var currentDirectory = AppDomain.CurrentDomain.BaseDirectory; var credit = Path.Combine(currentDirectory, "credit.json"); if (!File.Exists(credit)) return new List(); // throw new ArgumentException("Credit not found!"); var startDate = dtpStart.Value.Date; var finishDate = dtpFinish.Value.Date; var fileContents = new StreamReader(File.OpenRead(credit)).ReadToEnd(); JavaScriptSerializer jss = new JavaScriptSerializer(); var data = jss.Deserialize>(fileContents); IList list = new List(); foreach (var item in data) { if (item.Date.Date < startDate.Date || item.Date.Date > finishDate.Date) continue; list.Add(item); } var am = list.GroupBy(x => x.Date).Where(x => x.Count() > 1).Select(x => x.Key); if (am.Count() > 0) throw new ArgumentException("Duplicate dates in credit: " + am.Select(x => x.ToString("dd-MMM-yyyy")).Aggregate((c, n) => c + ", " + n)); return list; } private IList GetBeer() { var currentDirectory = AppDomain.CurrentDomain.BaseDirectory; var beer = Path.Combine(currentDirectory, "beer.json"); if (!File.Exists(beer)) throw new ArgumentException("Beer not found!"); var startDate = dtpStart.Value.Date; var finishDate = dtpFinish.Value.Date; var fileContents = new StreamReader(File.OpenRead(beer)).ReadToEnd(); JavaScriptSerializer jss = new JavaScriptSerializer(); var data = jss.Deserialize>(fileContents); IList list = new List(); foreach (var item in data) { if (item.Date.Date < startDate.Date || item.Date.Date > finishDate.Date) continue; list.Add(item); } return list; } private static decimal TryConvert(string amount) { decimal result = 0; decimal.TryParse(amount, out result); return result; } #endregion #region Tally private void btnTally_Click(object sender, EventArgs e) { var startDate = dtpStart.Value.Date; var finishDate = dtpFinish.Value.Date; var daybook = @"
Import Data
All Masters Peitho Foods Pvt. Ltd.(2012-13) "; for (var date = startDate; date <= finishDate; date = date.AddDays(1)) { daybook += GetVoucher(date); } daybook += @"
"; Clipboard.SetText(daybook, TextDataFormat.Text); } private static string GetVoucher(DateTime date) { var currentStart = date.AddHours(7); var currentFinish = date.AddDays(1).AddHours(7); var voucher = string.Empty; var cash = 0M; using (var bi = new ManagementBI()) { var saleAndVat = bi.GetSaleAndVat(currentStart, currentFinish); foreach (var item in saleAndVat) { if (item.Net == 0) throw new ArgumentException(); cash += Math.Round(item.Net); var rate = item.Rate * 100 / 1.05M; voucher += GetLedger(string.Format("Sale @ {0:#} %", rate), item.Net.ToString("#0.00")); var vat = Math.Round(item.Vat); if (vat != 0) { cash += vat; voucher += GetLedger(string.Format("Output Vat @ {0:#}%", rate), vat.ToString("#0.00")); } } var st = Math.Round(bi.GetServiceTax(currentStart, currentFinish)); if (st != 0) { cash += st; voucher += GetLedger("Central Service Tax", st.ToString("#0.00")); } if (cash != 0) { voucher = GetLedger("Cash", cash.ToString("#0.00")) + voucher; } } return voucher != "" ? GetVoucher(date.ToString("yyyyMMdd"), voucher) : ""; } private static string GetVoucher(string date, string ledgers) { #region Voucher Template var template = @" {1} {0} Journal 349 Cash Default Admin No No No No {1} No No No No 3525 No No Yes No No No No No No No No {2} "; var servicetaxtemplate = @""; #endregion return string.Format(template, Guid.NewGuid(), date, ledgers); } private static string GetLedger(string ledgername, string amount) { var isDeemedPositive = string.Empty; var isPartyLedger = string.Empty; switch (ledgername) { case "Cash": isDeemedPositive = "Yes"; isPartyLedger = "Yes"; amount = "-" + amount; break; case "Sale 12.5%": isDeemedPositive = "No"; isPartyLedger = "No"; break; case "Sale @ 15%": isDeemedPositive = "No"; isPartyLedger = "No"; break; case "Sale @ 25 %": isDeemedPositive = "No"; isPartyLedger = "No"; break; case "Sale Tax Free": isDeemedPositive = "No"; isPartyLedger = "No"; break; case "Output Vat 12.5%": isDeemedPositive = "No"; isPartyLedger = "No"; break; case "Output Vat @ 15%": isDeemedPositive = "No"; isPartyLedger = "No"; break; case "Output Vat @ 25%": isDeemedPositive = "No"; isPartyLedger = "No"; break; case "Central Service Tax@3.708%": isDeemedPositive = "No"; isPartyLedger = "No"; break; } #region Voucher Template const string template = @" {0} {1} No No {2} {3} "; var servicetaxtemplate = @""; #endregion return string.Format(template, ledgername, isDeemedPositive, isPartyLedger, amount); } #endregion private void btnFinalSanction_Click(object sender, EventArgs e) { txtStatus.Text = ""; _totalStopwatch = Stopwatch.StartNew(); bwFinalSanction.RunWorkerAsync(); } private void DoFinalSanction(object sender, DoWorkEventArgs e) { var startDate = dtpStart.Value.Date.AddHours(7); var finishDate = dtpFinish.Value.Date.AddDays(1).AddHours(7); using (var bi = new ManagementBI()) { bi.UpdateBillID(startDate, finishDate, bwFinalSanction); bi.UpdateOtherBillID(startDate, finishDate, VoucherType.NoCharge, bwFinalSanction); bi.UpdateOtherBillID(startDate, finishDate, VoucherType.Staff, bwFinalSanction); bi.SaveChanges(); } } private void bwFinalSanction_ProgressChanged(object sender, ProgressChangedEventArgs e) { var time = (_totalStopwatch.ElapsedMilliseconds / 1000).ToString() + "s"; txtStatus.Text = (string)e.UserState + " in " + time; } private void bwFinalSanction_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e) { var time = "Done in " + (_totalStopwatch.ElapsedMilliseconds / 1000).ToString() + "s"; _totalStopwatch.Stop(); txtStatus.Text = time; } } }