public ActionResult Invoice(int OrderNumber, int InvoiceID) { #region Prep Utilities myHandler = new BusinessLogicHandler(); InvoiceModel model = new InvoiceModel(); #endregion #region Get Invoice Data model.myInvoice = new Invoice(); model.myInvoice = myHandler.GetInvoice(InvoiceID); #endregion #region Get Invoice Lines model.InvoiceLine = new List<InvoiceItem>(); model.InvoiceLine = myHandler.GetInvoiceItems(InvoiceID); if(model.InvoiceLine != null) { model.totally = 0; foreach(var item in model.InvoiceLine) { model.totally += item.Price; } } #endregion #region Get Order model.Orders = new List<Order>(); model.Orders = myHandler.GetAllOrdersForInvoice(InvoiceID); #endregion #region Get Order Lines model.OrderLine = new List<OrderItem>(); foreach (var item in model.Orders) { model.OrderLine.AddRange(myHandler.GetOrderItemsList(item.OrderNo)); } #endregion #region View Supplier Involved model.Suppliers = new List<urbanbooks.Supplier>(); foreach (var item in model.Orders) { model.Suppliers.Add(myHandler.GetSupplier(item.SupplierID)); } #endregion return View(model); }
public ActionResult Search(FormCollection collector) { #region Prep Utilities string Query = collector.GetValue("query").AttemptedValue; myHandler = new BusinessLogicHandler(); Supplier supplier = new Supplier(); InvoiceModel model = new InvoiceModel(); #endregion #region Get User(Supplier) string userName = User.Identity.GetUserName(); ApplicationDbContext dataSocket = new ApplicationDbContext(); UserStore<ApplicationUser> myStore = new UserStore<ApplicationUser>(dataSocket); _userManager = new ApplicationUserManager(myStore); var user = _userManager.FindByEmail(userName); #endregion #region Get Supplier Details supplier = myHandler.GetSupplier(user.Id); #endregion #region Get the data model.Order = new Order(); model.Invoice = new Invoice(); try { model.Order = myHandler.GetOrder(Convert.ToInt32(Query)); } catch { model.Order = null; } try { model.Invoice = myHandler.GetInvoice(Convert.ToInt32(Query)); } catch { model.Invoice = null; } ///get product #endregion return View(model); }