// GET: ItemsHires/Details/5 public ActionResult Details(int?id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } ItemsHire itemsHire = db.ItemsHires.Find(id); if (itemsHire == null) { return(HttpNotFound()); } QRModel qr = new QRModel(); QRCodeGenerator ObjQr = new QRCodeGenerator(); //TempData["fullurl"] = HttpContext.Request.Url.AbsoluteUri; //qr.Message = TempData["fullurl"].ToString(); qr.Message = Request.Url.ToString(); QRCodeData qrCodeData = ObjQr.CreateQrCode(qr.Message, QRCodeGenerator.ECCLevel.Q); Bitmap bitMap = new QRCode(qrCodeData).GetGraphic(20); using (MemoryStream ms = new MemoryStream()) { bitMap.Save(ms, System.Drawing.Imaging.ImageFormat.Png); byte[] byteImage = ms.ToArray(); ViewBag.Url = "data:image/png;base64," + Convert.ToBase64String(byteImage); ms.Position = 0; } return(View(itemsHire)); }
public ActionResult DeleteConfirmed(int id) { ItemsHire itemsHire = db.ItemsHires.Find(id); db.ItemsHires.Remove(itemsHire); db.SaveChanges(); return(RedirectToAction("Index")); }
public ActionResult Edit([Bind(Include = "ProductID,ProductName,Description,ProductCategoryId,Quantity,Price,Image,ImageType,QtyUpdate")] ItemsHire itemsHire, HttpPostedFileBase image2, int?id) { if (ModelState.IsValid) { var img = (from i in db.ItemsHires where i.ProductID == itemsHire.ProductID select i.Image).Single(); if (image2 != null) { try { itemsHire.Image = new byte[image2.ContentLength]; image2.InputStream.Read(itemsHire.Image, 0, image2.ContentLength); ApplicationDbContext db = new ApplicationDbContext(); db.Entry(itemsHire).State = EntityState.Modified; ItemsHire prod = (from p in db.ItemsHires where p.ProductID == itemsHire.ProductID select p).Single(); prod.Quantity += itemsHire.QtyUpdate; db.SaveChanges(); return(RedirectToAction("Index")); } catch (Exception ex) { } } else if (img != null) { try { itemsHire.Image = img; db.Entry(itemsHire).State = EntityState.Modified; ItemsHire prod = (from p in db.ItemsHires where p.ProductID == itemsHire.ProductID select p).Single(); prod.Quantity += itemsHire.QtyUpdate; db.SaveChanges(); return(RedirectToAction("Index")); } catch (Exception ex) { } } else { ViewBag.imageError = "Please add an Image"; } } // ViewBag.CategoryId = new SelectList(db.Categories, "CategoryId", "Category_Name", itemsHire.CategoryId); ViewBag.ProductCategoryID = new SelectList(db.ProductTypes, "ProductCategoryId", "ProductCategory_Name", itemsHire.ProductCategoryId); return(View(itemsHire)); }
public ActionResult Edit([Bind(Include = "ProductID,ProductName,Description,ProductCategoryId,CategoryId,Quantity,Price,Image,ImageType")] ItemsHire itemsHire) { if (ModelState.IsValid) { db.Entry(itemsHire).State = EntityState.Modified; db.SaveChanges(); return(RedirectToAction("Index")); } ViewBag.CategoryId = new SelectList(db.Categories, "CategoryId", "Category_Name", itemsHire.CategoryId); ViewBag.ProductCategoryID = new SelectList(db.ProductTypes, "ProductCategoryId", "ProductCategory_Name", itemsHire.ProductCategoryId); return(View(itemsHire)); }
// GET: ItemsHires/Delete/5 public ActionResult Delete(int?id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } ItemsHire itemsHire = db.ItemsHires.Find(id); if (itemsHire == null) { return(HttpNotFound()); } return(View(itemsHire)); }
// GET: ItemsHires/Edit/5 public ActionResult Edit(int?id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } ItemsHire itemsHire = db.ItemsHires.Find(id); if (itemsHire == null) { return(HttpNotFound()); } ViewBag.CategoryId = new SelectList(db.Categories, "CategoryId", "Category_Name", itemsHire.CategoryId); ViewBag.ProductCategoryID = new SelectList(db.ProductTypes, "ProductCategoryId", "ProductCategory_Name", itemsHire.ProductCategoryId); return(View(itemsHire)); }
public ActionResult Create([Bind(Include = "ProductID,ProductName,Description,ProductCategoryId,Quantity,Price,Image,ImageType")] ItemsHire itemsHire, HttpPostedFileBase image2) { if (image2 != null) { itemsHire.Image = new byte[image2.ContentLength]; image2.InputStream.Read(itemsHire.Image, 0, image2.ContentLength); } else { ModelState.AddModelError(string.Empty, "Please add image"); } if (ModelState.IsValid) { db.ItemsHires.Add(itemsHire); db.SaveChanges(); return(RedirectToAction("Index")); } //ViewBag.CategoryId = new SelectList(db.Categories, "CategoryId", "Category_Name", itemsHire.CategoryId); ViewBag.ProductCategoryID = new SelectList(db.ProductTypes, "ProductCategoryId", "ProductCategory_Name", itemsHire.ProductCategoryId); return(View(itemsHire)); }
public async Task <ActionResult> ProcessOrderAsync(FormCollection frc) { ApplicationDbContext db = new ApplicationDbContext(); var Delivery = (from x in db.Maps where x.Email == User.Identity.Name orderby x.Id descending select x.Distance).First().ToString(); var order = (from i in db.Orders where i.Email == User.Identity.Name orderby i.OrderID descending select i).First(); // string cos = Delivery.Distance; var UserManager = new UserManager <ApplicationUser>(new UserStore <ApplicationUser>(db)); ApplicationUser currentUser = UserManager.FindById(User.Identity.GetUserId()); string ID = currentUser.Id; string Email = currentUser.Email; string Name = currentUser.Name; string SName = currentUser.Surname; byte[] Sign = currentUser.MySignature; //var Delivery = (from i in db.Maps // select i).Last(); List <Cart> lstCart = (List <Cart>)Session[strCart]; //Models.Order ord = new Models.Order(); //string a = ord.CollDate.ToString(); //1.savw the order into order table //var order = new Models.Order() //{ // MySignature = Sign, // CustomerName = frc["cusName"], // Surname = frc["cusSurname"], // CustomerPhone = frc["cusPhone"], // Email = frc["cusEmail"], // //CollDate = Convert.ToDateTime(frc["colDate"]).ToShortDateString(), // CollDate = Convert.ToDateTime(frc["collDate"]).ToShortDateString(), // OrderDate = DateTime.Now, // PaymentType = "PayPal", // //ExpectedReturnDate = Convert.ToDateTime(frc["collDate"]).AddDays(2).ToString("dd/MM/yyyy") // ExpectedReturnDate = Convert.ToDateTime(frc["collDate"]).Date.AddDays(2) // //Status = "Processing" // }; // db.Orders.Add(order); //string ReturnDate = ""; //ReturnDate = Convert.ToDateTime(order.CollDate).AddDays(3).ToString(/*"dd/MM/yyyy"*/); OrderDetail orderDetail = new OrderDetail(); //2. save the order detail into the Order detail table List <string> productName = new List <string>(); List <int> productId = new List <int>(); List <int> productQuantity = new List <int>(); List <decimal> productPrice = new List <decimal>(); List <string> distance = new List <string>(); //List<decimal> deposit = new List<decimal>(); List <Cart> temp = (List <Cart>)Session["Cart"]; //var deposit = String.Format("{0:C}", temp.Sum(x => x.Quantity * x.ItemsHire.Price / 2)); var total = String.Format("{0:C}", (temp.Sum(x => x.Quantity * x.ItemsHire.Price) + temp.Sum(x => x.Quantity * x.ItemsHire.Price / 2)) /* + Delivery.ToString()*//* + Delivery.Distance.ToString()*/); foreach (Cart cart in lstCart) { orderDetail.OrderID = order.OrderID; orderDetail.ProductName = cart.ItemsHire.ProductName; orderDetail.ProductID = cart.ItemsHire.ProductID; orderDetail.Quantity = cart.Quantity; orderDetail.Price = cart.ItemsHire.Price; //orderDetail.Distance = Delivery.ToString(); orderDetail.Deposit = temp.Sum(x => x.Quantity * x.ItemsHire.Price / 2); orderDetail.Total = temp.Sum(x => x.Quantity * x.ItemsHire.Price /* + Convert.ToDecimal(Delivery)*/) + orderDetail.Deposit /* + Convert.ToDecimal(Delivery.Distance.ToString())*/; productName.Add(cart.ItemsHire.ProductName); productQuantity.Add(cart.Quantity); productPrice.Add(cart.ItemsHire.Price); //deposit.Add(orderDetail.Deposit); db.OrderDetails.Add(orderDetail); ItemsHire prod = (from p in db.ItemsHires where p.ProductID == orderDetail.ProductID select p).Single(); prod.Quantity -= orderDetail.Quantity; db.SaveChanges(); } try { ViewBag.Orders = db.Orders.ToList().FindAll(x => x.OrderID == order.OrderID); MemoryStream memoryStream = new MemoryStream(); StringBuilder status = new StringBuilder(""); var doc = new Document(PageSize.A4, 10, 10, 10, 10); PdfWriter writer = PdfWriter.GetInstance(doc, memoryStream); var titleFont = FontFactory.GetFont("Arial", 12, Font.BOLD); var titleFontBlue = FontFactory.GetFont("Arial", 14, Font.NORMAL, BaseColor.BLUE); var boldTableFont = FontFactory.GetFont("Arial", 8, Font.BOLD); var bodyFont = FontFactory.GetFont("Arial", 8, Font.NORMAL); var EmailFont = FontFactory.GetFont("Arial", 8, Font.NORMAL, BaseColor.BLUE); BaseColor TabelHeaderBackGroundColor = WebColors.GetRGBColor("#EEEEEE"); // doc.SetWidths(headers); Rectangle pageSize = writer.PageSize; doc.Open(); PdfPTable header = new PdfPTable(3); header.HorizontalAlignment = 0; header.WidthPercentage = 100; header.SetWidths(new float[] { 100f, 320f, 100f }); header.DefaultCell.Border = Rectangle.NO_BORDER; iTextSharp.text.Image logo = iTextSharp.text.Image.GetInstance(HttpContext.Server.MapPath("~/Content/Images/GP_BLUE.jpg")); //var logo = iTextSharp.text.Image.GetInstance(Server.MapPath("~/Content/Images/GP_BLUE.jpg")); logo.ScaleToFit(100, 100); { PdfPCell pdfCelllogo = new PdfPCell(logo); pdfCelllogo.Border = Rectangle.NO_BORDER; pdfCelllogo.BorderColorBottom = new BaseColor(System.Drawing.Color.Black); pdfCelllogo.BorderWidthBottom = 1f; header.AddCell(pdfCelllogo); } { PdfPCell middlecell = new PdfPCell(); middlecell.Border = Rectangle.NO_BORDER; middlecell.BorderColorBottom = new BaseColor(System.Drawing.Color.Black); middlecell.BorderWidthBottom = 1f; header.AddCell(middlecell); } { PdfPTable nested = new PdfPTable(1); nested.DefaultCell.Border = Rectangle.NO_BORDER; PdfPCell nextPostCell1 = new PdfPCell(new Phrase("Gold Pride", titleFont)); nextPostCell1.Border = Rectangle.NO_BORDER; nested.AddCell(nextPostCell1); PdfPCell nextPostCell2 = new PdfPCell(new Phrase("90 street, Durban, SA,", bodyFont)); nextPostCell2.Border = Rectangle.NO_BORDER; nested.AddCell(nextPostCell2); PdfPCell nextPostCell3 = new PdfPCell(new Phrase("(082) 0798501", bodyFont)); nextPostCell3.Border = Rectangle.NO_BORDER; nested.AddCell(nextPostCell3); PdfPCell nextPostCell4 = new PdfPCell(new Phrase("*****@*****.**", EmailFont)); nextPostCell4.Border = Rectangle.NO_BORDER; nested.AddCell(nextPostCell4); nested.AddCell(""); PdfPCell nesthousing = new PdfPCell(nested); nesthousing.Border = Rectangle.NO_BORDER; nesthousing.BorderColorBottom = new BaseColor(System.Drawing.Color.Black); nesthousing.BorderWidthBottom = 1f; nesthousing.Rowspan = 5; nesthousing.PaddingBottom = 10f; header.AddCell(nesthousing); } PdfPTable Invoicetable = new PdfPTable(3); Invoicetable.HorizontalAlignment = 0; Invoicetable.WidthPercentage = 100; Invoicetable.SetWidths(new float[] { 100f, 320f, 100f }); // then set the column's __relative__ widths Invoicetable.DefaultCell.Border = Rectangle.NO_BORDER; { PdfPTable nested = new PdfPTable(1); nested.DefaultCell.Border = Rectangle.NO_BORDER; PdfPCell nextPostCell1 = new PdfPCell(new Phrase("INVOICE TO:", bodyFont)); nextPostCell1.Border = Rectangle.NO_BORDER; nested.AddCell(nextPostCell1); PdfPCell nextPostCell2 = new PdfPCell(new Phrase(" " + Name, bodyFont)); nextPostCell2.Border = Rectangle.NO_BORDER; nested.AddCell(nextPostCell2); PdfPCell nextPostCell3 = new PdfPCell(new Phrase("" + order.CollDate, bodyFont)); nextPostCell3.Border = Rectangle.NO_BORDER; nested.AddCell(nextPostCell3); PdfPCell nextPostCell4 = new PdfPCell(new Phrase(" " + Email, EmailFont)); nextPostCell4.Border = Rectangle.NO_BORDER; nested.AddCell(nextPostCell4); nested.AddCell(""); PdfPCell nesthousing = new PdfPCell(nested); nesthousing.Border = Rectangle.NO_BORDER; //nesthousing.BorderColorBottom = new BaseColor(System.Drawing.Color.Black); //nesthousing.BorderWidthBottom = 1f; nesthousing.Rowspan = 5; nesthousing.PaddingBottom = 10f; Invoicetable.AddCell(nesthousing); } { PdfPCell middlecell = new PdfPCell(); middlecell.Border = Rectangle.NO_BORDER; //middlecell.BorderColorBottom = new BaseColor(System.Drawing.Color.Black); //middlecell.BorderWidthBottom = 1f; Invoicetable.AddCell(middlecell); } { PdfPTable nested = new PdfPTable(1); nested.DefaultCell.Border = Rectangle.NO_BORDER; PdfPCell nextPostCell1 = new PdfPCell(new Phrase("Invoice Number: " + order.OrderID, titleFontBlue)); nextPostCell1.Border = Rectangle.NO_BORDER; nested.AddCell(nextPostCell1); PdfPCell nextPostCell2 = new PdfPCell(new Phrase("Date of Invoice: " + order.OrderDate.ToString("dd/MM/yyyy HH:mm:ss"), bodyFont)); nextPostCell2.Border = Rectangle.NO_BORDER; nested.AddCell(nextPostCell2); PdfPCell nextPostCell3 = new PdfPCell(new Phrase("Pick Up Date: " + order.CollDate.ToShortDateString(), bodyFont)); nextPostCell3.Border = Rectangle.NO_BORDER; nested.AddCell(nextPostCell3); PdfPCell nextPostCell4 = new PdfPCell(new Phrase("Return Date: " + order.ExpectedReturnDate.ToShortDateString(), bodyFont)); nextPostCell4.Border = Rectangle.NO_BORDER; nested.AddCell(nextPostCell4); //PdfPCell nextPostCell5 = new PdfPCell(new Phrase(" Hire Period: " , bodyFont)); //nextPostCell5.Border = Rectangle.NO_BORDER; //nested.AddCell(nextPostCell5); PdfPCell nextPostCell5 = new PdfPCell(new Phrase("Collection Status: " + order.PickUp, bodyFont)); nextPostCell5.Border = Rectangle.NO_BORDER; nested.AddCell(nextPostCell5); PdfPCell nextPostCell6 = new PdfPCell(new Phrase("Collectors Name: " + order.CustomerName, bodyFont)); nextPostCell6.Border = Rectangle.NO_BORDER; nested.AddCell(nextPostCell6); //PdfPCell nextPostCell6 = new PdfPCell(new Phrase("Collectors Address" + order.CustomerName, bodyFont)); //nextPostCell5.Border = Rectangle.NO_BORDER; //nested.AddCell(nextPostCell6); PdfPCell nextPostCell7 = new PdfPCell(new Phrase("Collectors Number: " + "\n" + order.CustomerPhone, bodyFont)); nextPostCell7.Border = Rectangle.NO_BORDER; nested.AddCell(nextPostCell7); PdfPCell nextPostCell8 = new PdfPCell(new Phrase("Payment Mehtod: " + "PayFast", bodyFont)); nextPostCell8.Border = Rectangle.NO_BORDER; nested.AddCell(nextPostCell8); nested.AddCell(""); PdfPCell nesthousing = new PdfPCell(nested); nesthousing.Border = Rectangle.NO_BORDER; //nesthousing.BorderColorBottom = new BaseColor(System.Drawing.Color.Black); //nesthousing.BorderWidthBottom = 1f; nesthousing.Rowspan = 5; nesthousing.PaddingBottom = 10f; Invoicetable.AddCell(nesthousing); } doc.Add(header); Invoicetable.PaddingTop = 10f; doc.Add(Invoicetable); #region Items Table //Create body table PdfPTable itemTable = new PdfPTable(5); itemTable.HorizontalAlignment = 0; itemTable.WidthPercentage = 100; itemTable.SetWidths(new float[] { 5, 40, 10, 20, 25 }); // then set the column's __relative__ widths itemTable.SpacingAfter = 40; itemTable.DefaultCell.Border = Rectangle.BOX; PdfPCell cell1 = new PdfPCell(new Phrase("PROD ID", boldTableFont)); cell1.BackgroundColor = TabelHeaderBackGroundColor; cell1.HorizontalAlignment = Element.ALIGN_CENTER; itemTable.AddCell(cell1); PdfPCell cell2 = new PdfPCell(new Phrase("PRODUCT NAME", boldTableFont)); cell2.BackgroundColor = TabelHeaderBackGroundColor; cell2.HorizontalAlignment = 1; itemTable.AddCell(cell2); PdfPCell cell3 = new PdfPCell(new Phrase("QUANTITY", boldTableFont)); cell3.BackgroundColor = TabelHeaderBackGroundColor; cell3.HorizontalAlignment = Element.ALIGN_CENTER; itemTable.AddCell(cell3); PdfPCell cell4 = new PdfPCell(new Phrase("UNIT AMOUNT", boldTableFont)); cell4.BackgroundColor = TabelHeaderBackGroundColor; cell4.HorizontalAlignment = Element.ALIGN_CENTER; itemTable.AddCell(cell4); //PdfPCell cell5 = new PdfPCell(new Phrase("Delivery Cost", boldTableFont)); //cell5.BackgroundColor = TabelHeaderBackGroundColor; //cell5.HorizontalAlignment = Element.ALIGN_CENTER; //itemTable.AddCell(cell5); PdfPCell cell5 = new PdfPCell(new Phrase("TOTAL", boldTableFont)); cell5.BackgroundColor = TabelHeaderBackGroundColor; cell5.HorizontalAlignment = Element.ALIGN_CENTER; itemTable.AddCell(cell5); foreach (Cart cart in lstCart) { orderDetail.OrderID = order.OrderID; orderDetail.ProductName = cart.ItemsHire.ProductName; orderDetail.ProductID = cart.ItemsHire.ProductID; orderDetail.Quantity = cart.Quantity; orderDetail.Price = cart.ItemsHire.Price; orderDetail.SubTotal = cart.Quantity * cart.ItemsHire.Price; orderDetail.Deposit = temp.Sum(x => x.Quantity * x.ItemsHire.Price / 2); orderDetail.Total = orderDetail.SubTotal + orderDetail.Deposit + Convert.ToDecimal(Delivery) /*temp.Sum(x => x.Quantity * cart.ItemsHire.Price)*//* + Convert.ToDecimal(Delivery) + orderDetail.Deposit*/; PdfPCell numberCell = new PdfPCell(new Phrase("" + orderDetail.ProductID, bodyFont)); numberCell.HorizontalAlignment = 1; numberCell.PaddingLeft = 10f; numberCell.Border = Rectangle.LEFT_BORDER | Rectangle.RIGHT_BORDER; itemTable.AddCell(numberCell); var _phrase = new Phrase(); _phrase.Add(new Chunk(" " + orderDetail.ProductName, bodyFont)); PdfPCell descCell = new PdfPCell(_phrase); descCell.HorizontalAlignment = 0; descCell.PaddingLeft = 10f; descCell.Border = Rectangle.LEFT_BORDER | Rectangle.RIGHT_BORDER; itemTable.AddCell(descCell); PdfPCell qtyCell = new PdfPCell(new Phrase(" " + orderDetail.Quantity, bodyFont)); qtyCell.HorizontalAlignment = 1; qtyCell.PaddingLeft = 10f; qtyCell.Border = Rectangle.LEFT_BORDER | Rectangle.RIGHT_BORDER; itemTable.AddCell(qtyCell); PdfPCell amountCell = new PdfPCell(new Phrase(" " + orderDetail.Price, bodyFont)); amountCell.HorizontalAlignment = 1; amountCell.PaddingLeft = 10f; amountCell.Border = Rectangle.LEFT_BORDER | Rectangle.RIGHT_BORDER; itemTable.AddCell(amountCell); //PdfPCell deliveryamtCell = new PdfPCell(new Phrase("240 " /*+ Delivery*/, bodyFont)); //deliveryamtCell.HorizontalAlignment = 1; //deliveryamtCell.Border = Rectangle.LEFT_BORDER | Rectangle.RIGHT_BORDER; //itemTable.AddCell(deliveryamtCell); PdfPCell totalamtCell = new PdfPCell(new Phrase(" " + orderDetail.SubTotal, bodyFont)); totalamtCell.HorizontalAlignment = 1; totalamtCell.Border = Rectangle.LEFT_BORDER | Rectangle.RIGHT_BORDER; itemTable.AddCell(totalamtCell); } //Delivery start PdfPCell deliveryCell = new PdfPCell(new Phrase("")); deliveryCell.Border = Rectangle.LEFT_BORDER | Rectangle.TOP_BORDER; itemTable.AddCell(deliveryCell); PdfPCell deliveryCell2 = new PdfPCell(new Phrase("")); deliveryCell2.Border = Rectangle.TOP_BORDER; //Rectangle.NO_BORDER; //Rectangle.TOP_BORDER; itemTable.AddCell(deliveryCell2); PdfPCell deliveryCell3 = new PdfPCell(new Phrase("")); deliveryCell3.Border = Rectangle.TOP_BORDER; //Rectangle.NO_BORDER; //Rectangle.TOP_BORDER; itemTable.AddCell(deliveryCell3); PdfPCell DeliveryCell = new PdfPCell(new Phrase("Delivery", boldTableFont)); DeliveryCell.Border = Rectangle.TOP_BORDER; //Rectangle.NO_BORDER; //Rectangle.TOP_BORDER; DeliveryCell.HorizontalAlignment = 1; itemTable.AddCell(DeliveryCell); PdfPCell DelCell = new PdfPCell(new Phrase("$" + Delivery, boldTableFont)); DelCell.HorizontalAlignment = 1; itemTable.AddCell(DelCell); //Delivery End //Deposit start PdfPCell depCell = new PdfPCell(new Phrase("")); depCell.Border = Rectangle.LEFT_BORDER | Rectangle.TOP_BORDER; itemTable.AddCell(depCell); PdfPCell depCell2 = new PdfPCell(new Phrase("")); depCell2.Border = Rectangle.TOP_BORDER; //Rectangle.NO_BORDER; //Rectangle.TOP_BORDER; itemTable.AddCell(depCell2); PdfPCell depCell3 = new PdfPCell(new Phrase("")); depCell3.Border = Rectangle.TOP_BORDER; //Rectangle.NO_BORDER; //Rectangle.TOP_BORDER; itemTable.AddCell(depCell3); PdfPCell depCelll = new PdfPCell(new Phrase("Deposit", boldTableFont)); depCelll.Border = Rectangle.TOP_BORDER; //Rectangle.NO_BORDER; //Rectangle.TOP_BORDER; depCelll.HorizontalAlignment = 1; itemTable.AddCell(depCelll); PdfPCell depCell4 = new PdfPCell(new Phrase("$" + orderDetail.Deposit, boldTableFont)); depCell4.HorizontalAlignment = 1; itemTable.AddCell(depCell4); //Deposit End // Table footer PdfPCell totalAmtCell1 = new PdfPCell(new Phrase("")); totalAmtCell1.Border = Rectangle.LEFT_BORDER | Rectangle.TOP_BORDER; itemTable.AddCell(totalAmtCell1); PdfPCell totalAmtCell2 = new PdfPCell(new Phrase("")); totalAmtCell2.Border = Rectangle.TOP_BORDER; //Rectangle.NO_BORDER; //Rectangle.TOP_BORDER; itemTable.AddCell(totalAmtCell2); PdfPCell totalAmtCell3 = new PdfPCell(new Phrase("")); totalAmtCell3.Border = Rectangle.TOP_BORDER; //Rectangle.NO_BORDER; //Rectangle.TOP_BORDER; itemTable.AddCell(totalAmtCell3); PdfPCell totalAmtStrCell = new PdfPCell(new Phrase("Total Amount", boldTableFont)); totalAmtStrCell.Border = Rectangle.TOP_BORDER; //Rectangle.NO_BORDER; //Rectangle.TOP_BORDER; totalAmtStrCell.HorizontalAlignment = 1; itemTable.AddCell(totalAmtStrCell); PdfPCell totalAmtCell = new PdfPCell(new Phrase("$" + orderDetail.Total, boldTableFont)); totalAmtCell.HorizontalAlignment = 1; itemTable.AddCell(totalAmtCell); PdfPCell cell = new PdfPCell(new Phrase("Thank You For Your Support", bodyFont)); cell.Colspan = 5; cell.HorizontalAlignment = 1; itemTable.AddCell(cell); doc.Add(itemTable); #endregion PdfContentByte cb = new PdfContentByte(writer); BaseFont bf = BaseFont.CreateFont(BaseFont.HELVETICA, BaseFont.CP1250, true); cb = new PdfContentByte(writer); cb = writer.DirectContent; cb.BeginText(); cb.SetFontAndSize(bf, 8); cb.SetTextMatrix(pageSize.GetLeft(120), 20); cb.ShowText("Invoice was created on a computer and is valid without the signature and seal. "); cb.EndText(); //Move the pointer and draw line to separate footer section from rest of page cb.MoveTo(40, doc.PageSize.GetBottom(50)); cb.LineTo(doc.PageSize.Width - 40, doc.PageSize.GetBottom(50)); cb.Stroke(); //PdfContentByte content = writer.DirectContent; //Rectangle rectangle = new Rectangle(doc.PageSize); //rectangle.Left += doc.LeftMargin; //rectangle.Right -= doc.RightMargin; //rectangle.Top -= doc.TopMargin; //rectangle.Bottom += doc.BottomMargin; //content.SetColorStroke(GrayColor.BLACK); //content.Rectangle(rectangle.Left, rectangle.Bottom, rectangle.Width, rectangle.Height); //content.Stroke(); writer.CloseStream = false; doc.Close(); memoryStream.Position = 0; QRModel qr = new QRModel(); QRCodeGenerator ObjQr = new QRCodeGenerator(); qr.Message = "https://2020grp26.azurewebsites.net/Order/Details/" + order.OrderID; QRCodeData qrCodeData = ObjQr.CreateQrCode(qr.Message, QRCodeGenerator.ECCLevel.Q); System.Drawing.Bitmap bitMap = new QRCode(qrCodeData).GetGraphic(20); using (MemoryStream ms = new MemoryStream()) { bitMap.Save(ms, System.Drawing.Imaging.ImageFormat.Png); byte[] byteImage = ms.ToArray(); ViewBag.Url = "data:image/png;base64," + Convert.ToBase64String(byteImage); ms.Position = 0; // start of working email SmtpClient client = new SmtpClient("smtp.sendgrid.net"); client.Port = 25; client.Host = "smtp.sendgrid.net"; client.Timeout = 10000; client.DeliveryMethod = SmtpDeliveryMethod.Network; client.EnableSsl = true; client.UseDefaultCredentials = false; var key = Environment.GetEnvironmentVariable("apikey"); client.Credentials = new NetworkCredential("apikey", key /*, user, password*/); System.Net.Mail.Attachment attachment; System.Net.Mail.Attachment attach; attachment = new System.Net.Mail.Attachment(memoryStream, "order.pdf"); attach = new System.Net.Mail.Attachment(ms, "order.png"); MailMessage msz = new MailMessage(Email, Email) { From = new MailAddress(ConfigurationManager.AppSettings["Email"].ToString()), Subject = "order Details for " + Name.ToUpper(), IsBodyHtml = true, Body = " Good Day : " + Name.ToUpper() + ", Please find attached order information for order ID : " + order.OrderID, }; msz.Attachments.Add(attachment); msz.Attachments.Add(attach); client.Send(msz); ModelState.Clear(); // end //var at = new SendGrid.Helpers.Mail.Attachment(memoryStream, "Order.pdf"); //msz.Attachments.Add(new System.Net.Mail.Attachment(memoryStream, "order.pdf")); // msz.AddAttachment(Server.MapPath("")); //SmtpClient smtp = new SmtpClient(); // var response = client.SendMailAsync(msz); //client.SendAsync(msz, null); // smtp.SendAsync(msz); } } catch (Exception ex) { ModelState.Clear(); ViewBag.Message = $"sorry we are facing a problem{ex.Message}"; } //3. Remove shopping cart session Session.Remove(strCart); return(RedirectToAction("Index", "Home")); }