From 2070a1597b4f72b0e160b55e9d5b7201a21c75e2 Mon Sep 17 00:00:00 2001 From: Yuee Shiness Date: Fri, 19 May 2023 02:32:15 +0400 Subject: [PATCH] Messages + reports files logic and auxilary stuff. --- .../BusinessLogic/EmployeeReportLogic.cs | 3 + .../ComputerStoreBusinessLogic.csproj | 2 + .../MailStuff/AbstractMail.cs | 60 +++ .../MailStuff/MailKit.cs | 41 ++ .../OfficePackage/AbstractSaveToExcel.cs | 84 +++++ .../OfficePackage/AbstractSaveToPDF.cs | 88 +++++ .../OfficePackage/AbstractSaveToWord.cs | 58 +++ .../HelperEnums/ExcelStyleInfoType.cs | 15 + .../HelperEnums/PDFParagraphAlignmentType.cs | 17 + .../HelperEnums/WordJustificationType.cs | 14 + .../HelperModels/ExcelCellParameters.cs | 18 + .../OfficePackage/HelperModels/ExcelInfo.cs | 22 ++ .../HelperModels/ExcelMergeParameters.cs | 15 + .../OfficePackage/HelperModels/PDFInfo.cs | 19 + .../HelperModels/PDFParagraph.cs | 16 + .../HelperModels/PDFRowParameters.cs | 16 + .../OfficePackage/HelperModels/WordInfo.cs | 16 + .../HelperModels/WordParagraph.cs | 14 + .../HelperModels/WordTextProperties.cs | 16 + .../OfficePackage/Implements/SaveToExcel.cs | 354 ++++++++++++++++++ .../OfficePackage/Implements/SaveToPDF.cs | 148 ++++++++ .../OfficePackage/Implements/SaveToWord.cs | 116 ++++++ .../BindingModels/MailConfigBindingModel.cs | 18 + .../ViewModels/ReportPCByDateViewModel.cs | 1 + .../ReportProductByDateViewModel.cs | 3 + .../ComputerStoreDatabase.cs | 2 +- .../Implements/PCStorage.cs | 8 +- ComputerStoreDatabaseImplement/Models/PC.cs | 29 +- 28 files changed, 1199 insertions(+), 14 deletions(-) create mode 100644 ComputerStoreBusinessLogic/MailStuff/AbstractMail.cs create mode 100644 ComputerStoreBusinessLogic/MailStuff/MailKit.cs create mode 100644 ComputerStoreBusinessLogic/OfficePackage/AbstractSaveToExcel.cs create mode 100644 ComputerStoreBusinessLogic/OfficePackage/AbstractSaveToPDF.cs create mode 100644 ComputerStoreBusinessLogic/OfficePackage/AbstractSaveToWord.cs create mode 100644 ComputerStoreBusinessLogic/OfficePackage/HelperEnums/ExcelStyleInfoType.cs create mode 100644 ComputerStoreBusinessLogic/OfficePackage/HelperEnums/PDFParagraphAlignmentType.cs create mode 100644 ComputerStoreBusinessLogic/OfficePackage/HelperEnums/WordJustificationType.cs create mode 100644 ComputerStoreBusinessLogic/OfficePackage/HelperModels/ExcelCellParameters.cs create mode 100644 ComputerStoreBusinessLogic/OfficePackage/HelperModels/ExcelInfo.cs create mode 100644 ComputerStoreBusinessLogic/OfficePackage/HelperModels/ExcelMergeParameters.cs create mode 100644 ComputerStoreBusinessLogic/OfficePackage/HelperModels/PDFInfo.cs create mode 100644 ComputerStoreBusinessLogic/OfficePackage/HelperModels/PDFParagraph.cs create mode 100644 ComputerStoreBusinessLogic/OfficePackage/HelperModels/PDFRowParameters.cs create mode 100644 ComputerStoreBusinessLogic/OfficePackage/HelperModels/WordInfo.cs create mode 100644 ComputerStoreBusinessLogic/OfficePackage/HelperModels/WordParagraph.cs create mode 100644 ComputerStoreBusinessLogic/OfficePackage/HelperModels/WordTextProperties.cs create mode 100644 ComputerStoreBusinessLogic/OfficePackage/Implements/SaveToExcel.cs create mode 100644 ComputerStoreBusinessLogic/OfficePackage/Implements/SaveToPDF.cs create mode 100644 ComputerStoreBusinessLogic/OfficePackage/Implements/SaveToWord.cs create mode 100644 ComputerStoreContracts/BindingModels/MailConfigBindingModel.cs diff --git a/ComputerStoreBusinessLogic/BusinessLogic/EmployeeReportLogic.cs b/ComputerStoreBusinessLogic/BusinessLogic/EmployeeReportLogic.cs index 65889a1..c785552 100644 --- a/ComputerStoreBusinessLogic/BusinessLogic/EmployeeReportLogic.cs +++ b/ComputerStoreBusinessLogic/BusinessLogic/EmployeeReportLogic.cs @@ -39,6 +39,7 @@ namespace ComputerStoreBusinessLogic.BusinessLogic .Select(x => new ReportPCByDateViewModel { PCName = x.Name, + Price = x.Price, Components = x.PCComponents.Values.Select(x => (x.Item1.Name, x.Item2)).ToList(), EmployeeUsername = x.EmployeeUsername }).ToList(); @@ -55,6 +56,8 @@ namespace ComputerStoreBusinessLogic.BusinessLogic .Select(x => new ReportProductByDateViewModel { ProductName = x.Name, + EmployeeUsername = x.EmployeeUsername, + Price = x.Price, Components = x.ProductComponents.Values.Select(x => (x.Item1.Name, x.Item2)).ToList() }).ToList(); diff --git a/ComputerStoreBusinessLogic/ComputerStoreBusinessLogic.csproj b/ComputerStoreBusinessLogic/ComputerStoreBusinessLogic.csproj index 8147916..3d369cf 100644 --- a/ComputerStoreBusinessLogic/ComputerStoreBusinessLogic.csproj +++ b/ComputerStoreBusinessLogic/ComputerStoreBusinessLogic.csproj @@ -7,7 +7,9 @@ + + diff --git a/ComputerStoreBusinessLogic/MailStuff/AbstractMail.cs b/ComputerStoreBusinessLogic/MailStuff/AbstractMail.cs new file mode 100644 index 0000000..42f0211 --- /dev/null +++ b/ComputerStoreBusinessLogic/MailStuff/AbstractMail.cs @@ -0,0 +1,60 @@ +using ComputerStoreContracts.BindingModels; +using Microsoft.Extensions.Logging; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Net.Mail; +using System.Text; +using System.Threading.Tasks; + +namespace ComputerStoreBusinessLogic.MailStuff +{ + public abstract class AbstractMail + { + protected string _mailLogin = string.Empty; + protected string _mailPassword = string.Empty; + protected string _smtpClientHost = string.Empty; + + protected int _smtpClientPort; + protected string _popHost = string.Empty; + protected int _popPort; + + private readonly ILogger _logger; + + public AbstractMail(ILogger logger) + { + _logger = logger; + } + + public void MailConfig(MailConfigBindingModel config) + { + _mailLogin = config.Login; + _mailPassword = config.Password; + _smtpClientHost = config.SmtpClientHost; + _smtpClientPort = config.SmtpClientPort; + _popHost = config.PopHost; + _popPort = config.PopPort; + _logger.LogDebug("Config: {login}, {password}, {clientHost}, {clientPort}, {popHost}, {popPort}", _mailLogin, _mailPassword, _smtpClientHost, _smtpClientPort, _popHost, _popPort); + } + + public async void MailSendAsync(MailMessage info) + { + if (string.IsNullOrEmpty(_mailLogin) || string.IsNullOrEmpty(_mailPassword)) + { + return; + } + if (string.IsNullOrEmpty(_smtpClientHost) || _smtpClientPort == 0) + { + return; + } + if (string.IsNullOrEmpty(info.To.ToString()) || string.IsNullOrEmpty(info.Subject) || string.IsNullOrEmpty(info.Body) || !info.Attachments.Any()) + { + return; + } + _logger.LogDebug("Send E-mail: {To}, {Subject}", info.To.ToString(), info.Subject); + await SendMailAsync(info); + } + + protected abstract Task SendMailAsync(MailMessage info); + } +} diff --git a/ComputerStoreBusinessLogic/MailStuff/MailKit.cs b/ComputerStoreBusinessLogic/MailStuff/MailKit.cs new file mode 100644 index 0000000..28ca2a6 --- /dev/null +++ b/ComputerStoreBusinessLogic/MailStuff/MailKit.cs @@ -0,0 +1,41 @@ +using Microsoft.Extensions.Logging; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Net; +using System.Net.Mail; +using System.Text; +using System.Threading.Tasks; + +namespace ComputerStoreBusinessLogic.MailStuff +{ + public class MailKit : AbstractMail + { + public MailKit(ILogger logger) : base(logger) + { + + } + protected override async Task SendMailAsync(MailMessage info) + { + using var objMailMessage = new MailMessage(); + using var objSmtpClient = new SmtpClient(_smtpClientHost, _smtpClientPort); + try + { + objMailMessage.From = new MailAddress(_mailLogin); + objMailMessage.To.Add(new MailAddress(info.To.ToString())); + objMailMessage.Subject = info.Subject; objMailMessage.Body = info.Body; + objMailMessage.SubjectEncoding = Encoding.UTF8; + objMailMessage.BodyEncoding = Encoding.UTF8; + objSmtpClient.UseDefaultCredentials = false; + objSmtpClient.EnableSsl = true; + objSmtpClient.DeliveryMethod = SmtpDeliveryMethod.Network; + objSmtpClient.Credentials = new NetworkCredential(_mailLogin, _mailPassword); + await Task.Run(() => objSmtpClient.Send(objMailMessage)); + } + catch (Exception) + { + throw; + } + } + } +} diff --git a/ComputerStoreBusinessLogic/OfficePackage/AbstractSaveToExcel.cs b/ComputerStoreBusinessLogic/OfficePackage/AbstractSaveToExcel.cs new file mode 100644 index 0000000..e69d168 --- /dev/null +++ b/ComputerStoreBusinessLogic/OfficePackage/AbstractSaveToExcel.cs @@ -0,0 +1,84 @@ +using ComputerStoreBusinessLogic.OfficePackage.HelperEnums; +using ComputerStoreBusinessLogic.OfficePackage.HelperModels; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ComputerStoreBusinessLogic.OfficePackage +{ + public abstract class AbstractSaveToExcel + { + public void CreateReport(ExcelInfo info) + { + CreateExcel(info); + InsertCellInWorksheet(new ExcelCellParameters + { + ColumnName = "A", + RowIndex = 1, + Text = info.Title, + StyleInfo = ExcelStyleInfoType.Title + }); + MergeCells(new ExcelMergeParameters + { + CellFromName = "A1", + CellToName = "C1" + }); + uint rowIndex = 2; + foreach (var product in info.ConsignmentProducts) + { + InsertCellInWorksheet(new ExcelCellParameters + { + ColumnName = "A", + RowIndex = rowIndex, + Text = product.ID.ToString(), + StyleInfo = ExcelStyleInfoType.Text + }); + rowIndex++; + foreach (var (Product, Count) in product.Products) + { + InsertCellInWorksheet(new ExcelCellParameters + { + ColumnName = "B", + RowIndex = rowIndex, + Text = Product, + StyleInfo = ExcelStyleInfoType.TextWithBroder + }); + InsertCellInWorksheet(new ExcelCellParameters + { + ColumnName = "C", + RowIndex = rowIndex, + Text = Count.ToString(), + StyleInfo = ExcelStyleInfoType.TextWithBroder + }); + rowIndex++; + } + InsertCellInWorksheet(new ExcelCellParameters + { + ColumnName = "A", + RowIndex = rowIndex, + Text = "Total", + StyleInfo = ExcelStyleInfoType.Text + }); + InsertCellInWorksheet(new ExcelCellParameters + { + ColumnName = "C", + RowIndex = rowIndex, + Text = product.ID.ToString(), + StyleInfo = ExcelStyleInfoType.Text + }); + rowIndex++; + } + SaveExcel(info); + } + + protected abstract void CreateExcel(ExcelInfo info); + + protected abstract void InsertCellInWorksheet(ExcelCellParameters excelParams); + + protected abstract void MergeCells(ExcelMergeParameters excelParams); + + protected abstract void SaveExcel(ExcelInfo info); + } +} diff --git a/ComputerStoreBusinessLogic/OfficePackage/AbstractSaveToPDF.cs b/ComputerStoreBusinessLogic/OfficePackage/AbstractSaveToPDF.cs new file mode 100644 index 0000000..32ce508 --- /dev/null +++ b/ComputerStoreBusinessLogic/OfficePackage/AbstractSaveToPDF.cs @@ -0,0 +1,88 @@ +using ComputerStoreBusinessLogic.OfficePackage.HelperEnums; +using ComputerStoreBusinessLogic.OfficePackage.HelperModels; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ComputerStoreBusinessLogic.OfficePackage +{ + public abstract class AbstractSaveToPDF + { + public void CreateDoc(PDFInfo info) + { + CreatePDF(info); + CreateParagraph(new PDFParagraph + { + Text = info.Title, + Style = "NormalTitle", + ParagraphAlignment = PDFParagraphAlignmentType.Center + }); + CreateParagraph(new PDFParagraph + { + Text = $"from {info.DateFrom.ToShortDateString()} to {info.DateTo.ToShortDateString()}", + Style = "Normal", + ParagraphAlignment = PDFParagraphAlignmentType.Center + }); + CreateTable(new List { "6cm", "6cm", "3cm", "5cm"}); + CreateRow(new PDFRowParameters + { + Texts = new List { "PC's name", "Employee's username", "Total", "Components" }, + Style = "NormalTitle", + ParagraphAlignment = PDFParagraphAlignmentType.Center + }); + foreach (var pc in info.PCs) + { + CreateComplicatedRow(new PDFRowParameters + { + Texts = new List { pc.PCName, pc.EmployeeUsername, pc.Price.ToString() }, + Style = "Normal", + ParagraphAlignment = PDFParagraphAlignmentType.Left + },pc.Components); + } + CreateTable(new List { "6cm", "6cm", "3cm", "5cm" }); + CreateRow(new PDFRowParameters + { + Texts = new List { "Product's name", "Employee's username", "Total", "Components" }, + Style = "NormalTitle", + ParagraphAlignment = PDFParagraphAlignmentType.Center + }); + foreach (var product in info.Products) + { + CreateComplicatedRow(new PDFRowParameters + { + Texts = new List { product.ProductName, product.EmployeeUsername, product.Price.ToString() }, + Style = "Normal", + ParagraphAlignment = PDFParagraphAlignmentType.Left + },product.Components); + } + CreateParagraph(new PDFParagraph + { + Text = $"Total by products: {info.Products.Sum(x => x.Price)} + {info.Products}\t", + Style = "Normal", + ParagraphAlignment = PDFParagraphAlignmentType.Right + }); + CreateParagraph(new PDFParagraph + { + Text = $"Total by pcs: {info.PCs.Sum(x => x.Price)}\t", + Style = "Normal", + ParagraphAlignment = PDFParagraphAlignmentType.Right + }); + CreateParagraph(new PDFParagraph + { + Text = $"Total: {info.PCs.Sum(x => x.Price)} + {info.Products.Sum(x => x.Price)}\t", + Style = "Normal", + ParagraphAlignment = PDFParagraphAlignmentType.Right + }); + SavePDF(info); + } + + protected abstract void SavePDF(PDFInfo info); + protected abstract void CreatePDF(PDFInfo info); + protected abstract void CreateParagraph(PDFParagraph PDFParagraph); + protected abstract void CreateTable(List columns); + protected abstract void CreateRow(PDFRowParameters rowParameters); + protected abstract void CreateComplicatedRow(PDFRowParameters rowParameters, IEnumerable<(string,int)> components); + } +} diff --git a/ComputerStoreBusinessLogic/OfficePackage/AbstractSaveToWord.cs b/ComputerStoreBusinessLogic/OfficePackage/AbstractSaveToWord.cs new file mode 100644 index 0000000..af0b886 --- /dev/null +++ b/ComputerStoreBusinessLogic/OfficePackage/AbstractSaveToWord.cs @@ -0,0 +1,58 @@ +using ComputerStoreBusinessLogic.OfficePackage.HelperEnums; +using ComputerStoreBusinessLogic.OfficePackage.HelperModels; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ComputerStoreBusinessLogic.OfficePackage +{ + public abstract class AbstractSaveToWord + { + public void CreateDoc(WordInfo info) + { + CreateWord(info); + CreateParagraph(new WordParagraph + { + Texts = new List<(string, WordTextProperties)> { (info.Title, new WordTextProperties { Bold = true, Size = "24", }) }, + TextProperties = new WordTextProperties + { + Size = "24", + JustificationType = WordJustificationType.Center + } + }); + foreach (var consigment in info.Consignments) + { + CreateParagraph(new WordParagraph + { + Texts = new List<(string, WordTextProperties)> { (consigment.ID.ToString(), new WordTextProperties { Bold = true, Size = "24", }) }, + TextProperties = new WordTextProperties + { + Size = "24", + JustificationType = WordJustificationType.Both + } + }); + + foreach(var products in consigment.ConsignmentProducts) + { + CreateParagraph(new WordParagraph + { + Texts = new List<(string, WordTextProperties)> { (products.Value.Item1.Name, new WordTextProperties { Bold = true, Size = "24", }), ($" {products.Value.Item1.Price}", new WordTextProperties { Bold = true, Size = "24", }) }, + TextProperties = new WordTextProperties + { + Size = "24", + JustificationType = WordJustificationType.Both + } + }); + } + + } + SaveWord(info); + } + + protected abstract void CreateWord(WordInfo info); + protected abstract void CreateParagraph(WordParagraph paragraph); + protected abstract void SaveWord(WordInfo info); + } +} diff --git a/ComputerStoreBusinessLogic/OfficePackage/HelperEnums/ExcelStyleInfoType.cs b/ComputerStoreBusinessLogic/OfficePackage/HelperEnums/ExcelStyleInfoType.cs new file mode 100644 index 0000000..149d94b --- /dev/null +++ b/ComputerStoreBusinessLogic/OfficePackage/HelperEnums/ExcelStyleInfoType.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ComputerStoreBusinessLogic.OfficePackage.HelperEnums +{ + public enum ExcelStyleInfoType + { + Title, + Text, + TextWithBroder + } +} diff --git a/ComputerStoreBusinessLogic/OfficePackage/HelperEnums/PDFParagraphAlignmentType.cs b/ComputerStoreBusinessLogic/OfficePackage/HelperEnums/PDFParagraphAlignmentType.cs new file mode 100644 index 0000000..cc3dfe7 --- /dev/null +++ b/ComputerStoreBusinessLogic/OfficePackage/HelperEnums/PDFParagraphAlignmentType.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ComputerStoreBusinessLogic.OfficePackage.HelperEnums +{ + public enum PDFParagraphAlignmentType + { + Center, + + Left, + + Right + } +} diff --git a/ComputerStoreBusinessLogic/OfficePackage/HelperEnums/WordJustificationType.cs b/ComputerStoreBusinessLogic/OfficePackage/HelperEnums/WordJustificationType.cs new file mode 100644 index 0000000..38ae738 --- /dev/null +++ b/ComputerStoreBusinessLogic/OfficePackage/HelperEnums/WordJustificationType.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ComputerStoreBusinessLogic.OfficePackage.HelperEnums +{ + public enum WordJustificationType + { + Center, + Both + } +} diff --git a/ComputerStoreBusinessLogic/OfficePackage/HelperModels/ExcelCellParameters.cs b/ComputerStoreBusinessLogic/OfficePackage/HelperModels/ExcelCellParameters.cs new file mode 100644 index 0000000..6788cb5 --- /dev/null +++ b/ComputerStoreBusinessLogic/OfficePackage/HelperModels/ExcelCellParameters.cs @@ -0,0 +1,18 @@ +using ComputerStoreBusinessLogic.OfficePackage.HelperEnums; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ComputerStoreBusinessLogic.OfficePackage.HelperModels +{ + public class ExcelCellParameters + { + public string ColumnName { get; set; } = string.Empty; + public uint RowIndex { get; set; } + public string Text { get; set; } = string.Empty; + public string CellReference => $"{ColumnName}{RowIndex}"; + public ExcelStyleInfoType StyleInfo { get; set; } + } +} diff --git a/ComputerStoreBusinessLogic/OfficePackage/HelperModels/ExcelInfo.cs b/ComputerStoreBusinessLogic/OfficePackage/HelperModels/ExcelInfo.cs new file mode 100644 index 0000000..142437f --- /dev/null +++ b/ComputerStoreBusinessLogic/OfficePackage/HelperModels/ExcelInfo.cs @@ -0,0 +1,22 @@ +using ComputerStoreContracts.ViewModels; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ComputerStoreBusinessLogic.OfficePackage.HelperModels +{ + public class ExcelInfo + { + public string FileName { get; set; } = string.Empty; + public string Title { get; set; } = string.Empty; + public List ConsignmentProducts + { + get; + set; + } = new(); + + + } +} diff --git a/ComputerStoreBusinessLogic/OfficePackage/HelperModels/ExcelMergeParameters.cs b/ComputerStoreBusinessLogic/OfficePackage/HelperModels/ExcelMergeParameters.cs new file mode 100644 index 0000000..4722008 --- /dev/null +++ b/ComputerStoreBusinessLogic/OfficePackage/HelperModels/ExcelMergeParameters.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ComputerStoreBusinessLogic.OfficePackage.HelperModels +{ + public class ExcelMergeParameters + { + public string CellFromName { get; set; } = string.Empty; + public string CellToName { get; set; } = string.Empty; + public string Merge => $"{CellFromName}:{CellToName}"; + } +} diff --git a/ComputerStoreBusinessLogic/OfficePackage/HelperModels/PDFInfo.cs b/ComputerStoreBusinessLogic/OfficePackage/HelperModels/PDFInfo.cs new file mode 100644 index 0000000..ef55f3b --- /dev/null +++ b/ComputerStoreBusinessLogic/OfficePackage/HelperModels/PDFInfo.cs @@ -0,0 +1,19 @@ +using ComputerStoreContracts.ViewModels; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ComputerStoreBusinessLogic.OfficePackage.HelperModels +{ + public class PDFInfo + { + public string FileName { get; set; } = string.Empty; + public string Title { get; set; } = string.Empty; + public DateTime DateFrom { get; set; } + public DateTime DateTo { get; set; } + public List PCs { get; set; } = new(); + public List Products { get; set; } = new(); + } +} diff --git a/ComputerStoreBusinessLogic/OfficePackage/HelperModels/PDFParagraph.cs b/ComputerStoreBusinessLogic/OfficePackage/HelperModels/PDFParagraph.cs new file mode 100644 index 0000000..a97f3cb --- /dev/null +++ b/ComputerStoreBusinessLogic/OfficePackage/HelperModels/PDFParagraph.cs @@ -0,0 +1,16 @@ +using ComputerStoreBusinessLogic.OfficePackage.HelperEnums; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ComputerStoreBusinessLogic.OfficePackage.HelperModels +{ + public class PDFParagraph + { + public string Text { get; set; } = string.Empty; + public string Style { get; set; } = string.Empty; + public PDFParagraphAlignmentType ParagraphAlignment { get; set; } + } +} diff --git a/ComputerStoreBusinessLogic/OfficePackage/HelperModels/PDFRowParameters.cs b/ComputerStoreBusinessLogic/OfficePackage/HelperModels/PDFRowParameters.cs new file mode 100644 index 0000000..bdbcb2e --- /dev/null +++ b/ComputerStoreBusinessLogic/OfficePackage/HelperModels/PDFRowParameters.cs @@ -0,0 +1,16 @@ +using ComputerStoreBusinessLogic.OfficePackage.HelperEnums; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ComputerStoreBusinessLogic.OfficePackage.HelperModels +{ + public class PDFRowParameters + { + public List Texts { get; set; } = new(); + public string Style { get; set; } = string.Empty; + public PDFParagraphAlignmentType ParagraphAlignment { get; set; } + } +} diff --git a/ComputerStoreBusinessLogic/OfficePackage/HelperModels/WordInfo.cs b/ComputerStoreBusinessLogic/OfficePackage/HelperModels/WordInfo.cs new file mode 100644 index 0000000..ce9faa3 --- /dev/null +++ b/ComputerStoreBusinessLogic/OfficePackage/HelperModels/WordInfo.cs @@ -0,0 +1,16 @@ +using ComputerStoreContracts.ViewModels; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ComputerStoreBusinessLogic.OfficePackage.HelperModels +{ + public class WordInfo + { + public string FileName { get; set; } = string.Empty; + public string Title { get; set; } = string.Empty; + public List Consignments { get; set; } = new(); + } +} diff --git a/ComputerStoreBusinessLogic/OfficePackage/HelperModels/WordParagraph.cs b/ComputerStoreBusinessLogic/OfficePackage/HelperModels/WordParagraph.cs new file mode 100644 index 0000000..f364c85 --- /dev/null +++ b/ComputerStoreBusinessLogic/OfficePackage/HelperModels/WordParagraph.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ComputerStoreBusinessLogic.OfficePackage.HelperModels +{ + public class WordParagraph + { + public List<(string, WordTextProperties)> Texts { get; set; } = new(); + public WordTextProperties? TextProperties { get; set; } + } +} diff --git a/ComputerStoreBusinessLogic/OfficePackage/HelperModels/WordTextProperties.cs b/ComputerStoreBusinessLogic/OfficePackage/HelperModels/WordTextProperties.cs new file mode 100644 index 0000000..537daa4 --- /dev/null +++ b/ComputerStoreBusinessLogic/OfficePackage/HelperModels/WordTextProperties.cs @@ -0,0 +1,16 @@ +using ComputerStoreBusinessLogic.OfficePackage.HelperEnums; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ComputerStoreBusinessLogic.OfficePackage.HelperModels +{ + public class WordTextProperties + { + public string Size { get; set; } = string.Empty; + public bool Bold { get; set; } + public WordJustificationType JustificationType { get; set; } + } +} diff --git a/ComputerStoreBusinessLogic/OfficePackage/Implements/SaveToExcel.cs b/ComputerStoreBusinessLogic/OfficePackage/Implements/SaveToExcel.cs new file mode 100644 index 0000000..d9add37 --- /dev/null +++ b/ComputerStoreBusinessLogic/OfficePackage/Implements/SaveToExcel.cs @@ -0,0 +1,354 @@ +using ComputerStoreBusinessLogic.OfficePackage.HelperEnums; +using ComputerStoreBusinessLogic.OfficePackage.HelperModels; +using DocumentFormat.OpenXml; +using DocumentFormat.OpenXml.Office2010.Excel; +using DocumentFormat.OpenXml.Office2013.Excel; +using DocumentFormat.OpenXml.Packaging; +using DocumentFormat.OpenXml.Spreadsheet; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ComputerStoreBusinessLogic.OfficePackage.Implements +{ + public class SaveToExcel : AbstractSaveToExcel + { + private SpreadsheetDocument? _spreadsheetDocument; + private SharedStringTablePart? _shareStringPart; + private Worksheet? _worksheet; + + private static void CreateStyles(WorkbookPart workbookpart) + { + var sp = workbookpart.AddNewPart(); + sp.Stylesheet = new Stylesheet(); + var fonts = new Fonts() { Count = 2U, KnownFonts = true }; + + var fontUsual = new Font(); + fontUsual.Append(new FontSize() { Val = 12D }); + fontUsual.Append(new DocumentFormat.OpenXml.Office2010.Excel.Color() + { Theme = 1U }); + fontUsual.Append(new FontName() { Val = "Times New Roman" }); + fontUsual.Append(new FontFamilyNumbering() { Val = 2 }); + fontUsual.Append(new FontScheme() { Val = FontSchemeValues.Minor }); + + var fontTitle = new Font(); + fontTitle.Append(new Bold()); + fontTitle.Append(new FontSize() { Val = 14D }); + fontTitle.Append(new DocumentFormat.OpenXml.Office2010.Excel.Color() + { Theme = 1U }); + fontTitle.Append(new FontName() { Val = "Times New Roman" }); + fontTitle.Append(new FontFamilyNumbering() { Val = 2 }); + fontTitle.Append(new FontScheme() { Val = FontSchemeValues.Minor }); + + fonts.Append(fontUsual); + fonts.Append(fontTitle); + + var fills = new Fills() { Count = 2U }; + var fill1 = new Fill(); + fill1.Append(new PatternFill() { PatternType = PatternValues.None }); + var fill2 = new Fill(); + fill2.Append(new PatternFill() + { + PatternType = PatternValues.Gray125 + }); + fills.Append(fill1); + fills.Append(fill2); + + var borders = new Borders() { Count = 2U }; + var borderNoBorder = new Border(); + borderNoBorder.Append(new LeftBorder()); + borderNoBorder.Append(new RightBorder()); + borderNoBorder.Append(new TopBorder()); + borderNoBorder.Append(new BottomBorder()); + borderNoBorder.Append(new DiagonalBorder()); + var borderThin = new Border(); + var leftBorder = new LeftBorder() { Style = BorderStyleValues.Thin }; + leftBorder.Append(new DocumentFormat.OpenXml.Office2010.Excel.Color() + { Indexed = 64U }); + var rightBorder = new RightBorder() + { + Style = BorderStyleValues.Thin + }; + rightBorder.Append(new + DocumentFormat.OpenXml.Office2010.Excel.Color() + { Indexed = 64U }); + var topBorder = new TopBorder() { Style = BorderStyleValues.Thin }; + topBorder.Append(new DocumentFormat.OpenXml.Office2010.Excel.Color() + { Indexed = 64U }); + var bottomBorder = new BottomBorder() + { + Style = + BorderStyleValues.Thin + }; + bottomBorder.Append(new + DocumentFormat.OpenXml.Office2010.Excel.Color() + { Indexed = 64U }); + borderThin.Append(leftBorder); + borderThin.Append(rightBorder); + borderThin.Append(topBorder); + borderThin.Append(bottomBorder); + borderThin.Append(new DiagonalBorder()); + borders.Append(borderNoBorder); + borders.Append(borderThin); + var cellStyleFormats = new CellStyleFormats() { Count = 1U }; + var cellFormatStyle = new CellFormat() + { + NumberFormatId = 0U, + FontId + = 0U, + FillId = 0U, + BorderId = 0U + }; + cellStyleFormats.Append(cellFormatStyle); + var cellFormats = new CellFormats() { Count = 3U }; + var cellFormatFont = new CellFormat() + { + NumberFormatId = 0U, + FontId = + 0U, + FillId = 0U, + BorderId = 0U, + FormatId = 0U, + ApplyFont = true + }; + var cellFormatFontAndBorder = new CellFormat() + { + NumberFormatId = 0U, + FontId = 0U, + FillId = 0U, + BorderId = 1U, + FormatId = 0U, + ApplyFont = true, + ApplyBorder = true + }; + var cellFormatTitle = new CellFormat() + { + NumberFormatId = 0U, + FontId + = 1U, + FillId = 0U, + BorderId = 0U, + FormatId = 0U, + Alignment = new Alignment() + { + Vertical = VerticalAlignmentValues.Center, + WrapText = true, + Horizontal = + HorizontalAlignmentValues.Center + }, + ApplyFont = true + }; + cellFormats.Append(cellFormatFont); + cellFormats.Append(cellFormatFontAndBorder); + cellFormats.Append(cellFormatTitle); + var cellStyles = new CellStyles() { Count = 1U }; + cellStyles.Append(new CellStyle() + { + Name = "Normal", + FormatId = 0U, + BuiltinId = 0U + }); + var differentialFormats = new + DocumentFormat.OpenXml.Office2013.Excel.DifferentialFormats() + { Count = 0U }; + + var tableStyles = new TableStyles() + { + Count = 0U, + DefaultTableStyle = + "TableStyleMedium2", + DefaultPivotStyle = "PivotStyleLight16" + }; + var stylesheetExtensionList = new StylesheetExtensionList(); + var stylesheetExtension1 = new StylesheetExtension() + { + Uri = + "{EB79DEF2-80B8-43e5-95BD-54CBDDF9020C}" + }; + stylesheetExtension1.AddNamespaceDeclaration("x14", + "http://schemas.microsoft.com/office/spreadsheetml/2009/9/main"); + stylesheetExtension1.Append(new SlicerStyles() + { + DefaultSlicerStyle = + "SlicerStyleLight1" + }); + var stylesheetExtension2 = new StylesheetExtension() + { + Uri = + "{9260A510-F301-46a8-8635-F512D64BE5F5}" + }; + stylesheetExtension2.AddNamespaceDeclaration("x15", + "http://schemas.microsoft.com/office/spreadsheetml/2010/11/main"); + stylesheetExtension2.Append(new TimelineStyles() + { + DefaultTimelineStyle = "TimeSlicerStyleLight1" + }); + stylesheetExtensionList.Append(stylesheetExtension1); + stylesheetExtensionList.Append(stylesheetExtension2); + sp.Stylesheet.Append(fonts); + sp.Stylesheet.Append(fills); + sp.Stylesheet.Append(borders); + sp.Stylesheet.Append(cellStyleFormats); + sp.Stylesheet.Append(cellFormats); + sp.Stylesheet.Append(cellStyles); + sp.Stylesheet.Append(differentialFormats); + sp.Stylesheet.Append(tableStyles); + sp.Stylesheet.Append(stylesheetExtensionList); + } + + private static uint GetStyleValue(ExcelStyleInfoType styleInfo) + { + return styleInfo switch + { + ExcelStyleInfoType.Title => 2U, + ExcelStyleInfoType.TextWithBroder => 1U, + ExcelStyleInfoType.Text => 0U, + _ => 0U, + }; + } + + protected override void CreateExcel(ExcelInfo info) + { + _spreadsheetDocument = SpreadsheetDocument.Create(info.FileName, + SpreadsheetDocumentType.Workbook); + + var workbookpart = _spreadsheetDocument.AddWorkbookPart(); + workbookpart.Workbook = new Workbook(); + + CreateStyles(workbookpart); + + _shareStringPart = + _spreadsheetDocument.WorkbookPart!.GetPartsOfType().Any() + ? + _spreadsheetDocument.WorkbookPart.GetPartsOfType().First() + : + _spreadsheetDocument.WorkbookPart.AddNewPart(); + + + if (_shareStringPart.SharedStringTable == null) + { + _shareStringPart.SharedStringTable = new SharedStringTable(); + } + + + var worksheetPart = workbookpart.AddNewPart(); + worksheetPart.Worksheet = new Worksheet(new SheetData()); + + + var sheets = + _spreadsheetDocument.WorkbookPart.Workbook.AppendChild(new Sheets()); + var sheet = new Sheet() + { + Id = + _spreadsheetDocument.WorkbookPart.GetIdOfPart(worksheetPart), + SheetId = 1, + Name = "Лист" + }; + sheets.Append(sheet); + _worksheet = worksheetPart.Worksheet; + } + + protected override void InsertCellInWorksheet(ExcelCellParameters excelParams) + { + if (_worksheet == null || _shareStringPart == null) + { + return; + } + var sheetData = _worksheet.GetFirstChild(); + if (sheetData == null) + { + return; + } + + Row row; + if (sheetData.Elements().Where(r => r.RowIndex! == excelParams.RowIndex).Any()) + { + row = sheetData.Elements().Where(r => r.RowIndex! == excelParams.RowIndex).First(); + } + else + { + row = new Row() { RowIndex = excelParams.RowIndex }; + sheetData.Append(row); + } + + Cell cell; + if (row.Elements().Where(c => c.CellReference!.Value == + excelParams.CellReference).Any()) + { + cell = row.Elements().Where(c => c.CellReference!.Value == + excelParams.CellReference).First(); + } + else + { + Cell? refCell = null; + foreach (Cell rowCell in row.Elements()) + { + if (string.Compare(rowCell.CellReference!.Value, + excelParams.CellReference, true) > 0) + { + refCell = rowCell; + break; + } + } + var newCell = new Cell() + { + CellReference = + excelParams.CellReference + }; + row.InsertBefore(newCell, refCell); + cell = newCell; + } + + _shareStringPart.SharedStringTable.AppendChild(new SharedStringItem(new Text(excelParams.Text))); + _shareStringPart.SharedStringTable.Save(); + + cell.CellValue = new CellValue((_shareStringPart.SharedStringTable.Elements().Count() - 1).ToString()); + cell.DataType = new EnumValue(CellValues.SharedString); + cell.StyleIndex = GetStyleValue(excelParams.StyleInfo); + } + + protected override void MergeCells(ExcelMergeParameters excelParams) + { + if (_worksheet == null) + { + return; + } + MergeCells mergeCells; + if (_worksheet.Elements().Any()) + { + mergeCells = _worksheet.Elements().First(); + } + else + { + mergeCells = new MergeCells(); + if (_worksheet.Elements().Any()) + { + _worksheet.InsertAfter(mergeCells, + _worksheet.Elements().First()); + } + else + { + _worksheet.InsertAfter(mergeCells, + _worksheet.Elements().First()); + } + } + var mergeCell = new MergeCell() + { + Reference = new StringValue(excelParams.Merge) + }; + mergeCells.Append(mergeCell); + } + + protected override void SaveExcel(ExcelInfo info) + { + if (_spreadsheetDocument == null) + { + return; + } + _spreadsheetDocument.WorkbookPart!.Workbook.Save(); + _spreadsheetDocument.Dispose(); + } + } +} diff --git a/ComputerStoreBusinessLogic/OfficePackage/Implements/SaveToPDF.cs b/ComputerStoreBusinessLogic/OfficePackage/Implements/SaveToPDF.cs new file mode 100644 index 0000000..791dd44 --- /dev/null +++ b/ComputerStoreBusinessLogic/OfficePackage/Implements/SaveToPDF.cs @@ -0,0 +1,148 @@ +using ComputerStoreBusinessLogic.OfficePackage.HelperEnums; +using ComputerStoreBusinessLogic.OfficePackage.HelperModels; +using MigraDoc.DocumentObjectModel; +using MigraDoc.DocumentObjectModel.Tables; +using MigraDoc.Rendering; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ComputerStoreBusinessLogic.OfficePackage.Implements +{ + public class SaveToPDF : AbstractSaveToPDF + { + private Document? _document; + private Section? _section; + private Table? _table; + + private static ParagraphAlignment GetParagraphAlignment(PDFParagraphAlignmentType type) + { + return type switch + { + PDFParagraphAlignmentType.Center => ParagraphAlignment.Center, + PDFParagraphAlignmentType.Left => ParagraphAlignment.Left, + PDFParagraphAlignmentType.Right => ParagraphAlignment.Right, + _ => ParagraphAlignment.Justify, + }; + } + private static void DefineStyles(Document document) + { + var style = document.Styles["Normal"]; + style.Font.Name = "Times New Roman"; + style.Font.Size = 14; + style = document.Styles.AddStyle("NormalTitle", "Normal"); + style.Font.Bold = true; + } + + protected override void CreateComplicatedRow(PDFRowParameters rowParameters, IEnumerable<(string, int)> components) + { + if (_table == null) + { + return; + } + var row = _table.AddRow(); + for (int i = 0; i < rowParameters.Texts.Count; ++i) + { + row.Cells[i].AddParagraph(rowParameters.Texts[i]); + if (!string.IsNullOrEmpty(rowParameters.Style)) + { + row.Cells[i].Style = rowParameters.Style; + } + + Unit borderWidth = 0.5; + row.Cells[i].Borders.Left.Width = borderWidth; + row.Cells[i].Borders.Right.Width = borderWidth; + row.Cells[i].Borders.Top.Width = borderWidth; + row.Cells[i].Borders.Bottom.Width = borderWidth; + row.Cells[i].Format.Alignment = GetParagraphAlignment(rowParameters.ParagraphAlignment); + row.Cells[i].VerticalAlignment = VerticalAlignment.Center; + + } + foreach (var component in components) + { + row.Cells[rowParameters.Texts.Count].AddParagraph($"{component.Item1} {component.Item2}"); + if (!string.IsNullOrEmpty(rowParameters.Style)) + { + row.Cells[rowParameters.Texts.Count].Style = rowParameters.Style; + } + + Unit borderWidth = 0.5; + row.Cells[rowParameters.Texts.Count].Borders.Left.Width = borderWidth; + row.Cells[rowParameters.Texts.Count].Borders.Right.Width = borderWidth; + row.Cells[rowParameters.Texts.Count].Borders.Top.Width = borderWidth; + row.Cells[rowParameters.Texts.Count].Borders.Bottom.Width = borderWidth; + row.Cells[rowParameters.Texts.Count].Format.Alignment = GetParagraphAlignment(rowParameters.ParagraphAlignment); + row.Cells[rowParameters.Texts.Count].VerticalAlignment = VerticalAlignment.Center; + } + } + + protected override void CreateParagraph(PDFParagraph PDFParagraph) + { + if (_section == null) + { + return; + } + var paragraph = _section.AddParagraph(PDFParagraph.Text); + paragraph.Format.SpaceAfter = "1cm"; + paragraph.Format.Alignment = GetParagraphAlignment(PDFParagraph.ParagraphAlignment); + paragraph.Style = paragraph.Style; + } + + protected override void CreatePDF(PDFInfo info) + { + _document = new Document(); + DefineStyles(_document); + _section = _document.AddSection(); + } + + protected override void CreateRow(PDFRowParameters rowParameters) + { + if (_table == null) + { + return; + } + var row = _table.AddRow(); + for (int i = 0; i < rowParameters.Texts.Count; ++i) + { + row.Cells[i].AddParagraph(rowParameters.Texts[i]); + if (!string.IsNullOrEmpty(rowParameters.Style)) + { + row.Cells[i].Style = rowParameters.Style; + } + Unit borderWidth = 0.5; + row.Cells[i].Borders.Left.Width = borderWidth; + row.Cells[i].Borders.Right.Width = borderWidth; + row.Cells[i].Borders.Top.Width = borderWidth; + row.Cells[i].Borders.Bottom.Width = borderWidth; + row.Cells[i].Format.Alignment = GetParagraphAlignment(rowParameters.ParagraphAlignment); + row.Cells[i].VerticalAlignment = VerticalAlignment.Center; + } + } + + protected override void CreateTable(List columns) + { + if (_document == null) + { + return; + } + _table = _document.LastSection.AddTable(); + foreach (var elem in columns) + { + _table.AddColumn(elem); + } + } + + protected override void SavePDF(PDFInfo info) + { + var renderer = new PdfDocumentRenderer(true) + { + Document = _document + }; + + renderer.RenderDocument(); + renderer.PdfDocument.Save(info.FileName); + } + } +} diff --git a/ComputerStoreBusinessLogic/OfficePackage/Implements/SaveToWord.cs b/ComputerStoreBusinessLogic/OfficePackage/Implements/SaveToWord.cs new file mode 100644 index 0000000..48f38d4 --- /dev/null +++ b/ComputerStoreBusinessLogic/OfficePackage/Implements/SaveToWord.cs @@ -0,0 +1,116 @@ +using ComputerStoreBusinessLogic.OfficePackage.HelperEnums; +using ComputerStoreBusinessLogic.OfficePackage.HelperModels; +using DocumentFormat.OpenXml; +using DocumentFormat.OpenXml.Packaging; +using DocumentFormat.OpenXml.Wordprocessing; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ComputerStoreBusinessLogic.OfficePackage.Implements +{ + public class SaveToWord : AbstractSaveToWord + { + private WordprocessingDocument? _wordDocument; + private Body? _docBody; + + private static JustificationValues GetJustificationValues(WordJustificationType type) + { + return type switch + { + WordJustificationType.Both => JustificationValues.Both, + WordJustificationType.Center => JustificationValues.Center, + _ => JustificationValues.Left, + }; + } + + private static SectionProperties CreateSectionProperties() + { + var properties = new SectionProperties(); + var pageSize = new PageSize + { + Orient = PageOrientationValues.Portrait + }; + properties.AppendChild(pageSize); + return properties; + } + + private static ParagraphProperties? CreateParagraphProperties(WordTextProperties? paragraphProperties) + { + if (paragraphProperties == null) + { + return null; + } + var properties = new ParagraphProperties(); + properties.AppendChild(new Justification() + { + Val = GetJustificationValues(paragraphProperties.JustificationType) + }); + properties.AppendChild(new SpacingBetweenLines + { + LineRule = LineSpacingRuleValues.Auto + }); + properties.AppendChild(new Indentation()); + var paragraphMarkRunProperties = new ParagraphMarkRunProperties(); + if (!string.IsNullOrEmpty(paragraphProperties.Size)) + { + paragraphMarkRunProperties.AppendChild(new FontSize + { + Val = paragraphProperties.Size + }); + } + properties.AppendChild(paragraphMarkRunProperties); + return properties; + } + + protected override void CreateParagraph(WordParagraph paragraph) + { + if (_docBody == null || paragraph == null) + { + return; + } + var docParagraph = new Paragraph(); + + docParagraph.AppendChild(CreateParagraphProperties(paragraph.TextProperties)); + foreach (var run in paragraph.Texts) + { + var docRun = new Run(); + var properties = new RunProperties(); + properties.AppendChild(new FontSize { Val = run.Item2.Size }); + if (run.Item2.Bold) + { + properties.AppendChild(new Bold()); + } + docRun.AppendChild(properties); + docRun.AppendChild(new Text + { + Text = run.Item1, + Space = SpaceProcessingModeValues.Preserve + }); + docParagraph.AppendChild(docRun); + } + _docBody.AppendChild(docParagraph); + } + + protected override void CreateWord(WordInfo info) + { + _wordDocument = WordprocessingDocument.Create(info.FileName, WordprocessingDocumentType.Document); + MainDocumentPart mainPart = _wordDocument.AddMainDocumentPart(); + mainPart.Document = new Document(); + _docBody = mainPart.Document.AppendChild(new Body()); + } + + protected override void SaveWord(WordInfo info) + { + if (_docBody == null || _wordDocument == null) + { + return; + } + _docBody.AppendChild(CreateSectionProperties()); + _wordDocument.MainDocumentPart!.Document.Save(); + _wordDocument.Dispose(); + } + } +} diff --git a/ComputerStoreContracts/BindingModels/MailConfigBindingModel.cs b/ComputerStoreContracts/BindingModels/MailConfigBindingModel.cs new file mode 100644 index 0000000..d856ae5 --- /dev/null +++ b/ComputerStoreContracts/BindingModels/MailConfigBindingModel.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ComputerStoreContracts.BindingModels +{ + public class MailConfigBindingModel + { + public string Login { get; set; } = string.Empty; + public string Password { get; set; } = string.Empty; + public string SmtpClientHost { get; set; } = string.Empty; + public int SmtpClientPort { get; set; } + public string PopHost { get; set; } = string.Empty; + public int PopPort { get; set; } + } +} diff --git a/ComputerStoreContracts/ViewModels/ReportPCByDateViewModel.cs b/ComputerStoreContracts/ViewModels/ReportPCByDateViewModel.cs index 50b0876..c02e82a 100644 --- a/ComputerStoreContracts/ViewModels/ReportPCByDateViewModel.cs +++ b/ComputerStoreContracts/ViewModels/ReportPCByDateViewModel.cs @@ -9,6 +9,7 @@ namespace ComputerStoreContracts.ViewModels public class ReportPCByDateViewModel { public string PCName { get; set; } = string.Empty; + public double Price { get; set; } public List<(string Component, int count)> Components { get; set; } = new List<(string Component, int count)> (); public string EmployeeUsername { get; set; } = string.Empty; diff --git a/ComputerStoreContracts/ViewModels/ReportProductByDateViewModel.cs b/ComputerStoreContracts/ViewModels/ReportProductByDateViewModel.cs index 79d329d..8af38a0 100644 --- a/ComputerStoreContracts/ViewModels/ReportProductByDateViewModel.cs +++ b/ComputerStoreContracts/ViewModels/ReportProductByDateViewModel.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Generic; using System.Linq; +using System.Security.Cryptography.X509Certificates; using System.Text; using System.Threading.Tasks; @@ -9,6 +10,8 @@ namespace ComputerStoreContracts.ViewModels public class ReportProductByDateViewModel { public string ProductName { get; set; } = string.Empty; + public double Price { get; set; } public List<(string Component, int count)> Components { get; set; } = new List<(string Component, int count)>(); + public string EmployeeUsername { get; set; } = string.Empty; } } diff --git a/ComputerStoreDatabaseImplement/ComputerStoreDatabase.cs b/ComputerStoreDatabaseImplement/ComputerStoreDatabase.cs index 8d120be..16dc182 100644 --- a/ComputerStoreDatabaseImplement/ComputerStoreDatabase.cs +++ b/ComputerStoreDatabaseImplement/ComputerStoreDatabase.cs @@ -21,7 +21,7 @@ namespace ComputerStoreDatabaseImplement public virtual DbSet Components { get; set; } public virtual DbSet Products { get; set; } - public virtual DbSet PCs { get; set; } + public virtual DbSet PCS { get; set; } public virtual DbSet Employees { get; set; } public virtual DbSet RequestComponents { get; set; } public virtual DbSet ProductComponents { get; set; } diff --git a/ComputerStoreDatabaseImplement/Implements/PCStorage.cs b/ComputerStoreDatabaseImplement/Implements/PCStorage.cs index 92e6564..3626223 100644 --- a/ComputerStoreDatabaseImplement/Implements/PCStorage.cs +++ b/ComputerStoreDatabaseImplement/Implements/PCStorage.cs @@ -35,7 +35,7 @@ namespace ComputerStoreDatabaseImplement.Implements if(model.EmployeeID.HasValue) { - return context.PCs.Include(x => x.Employee).Where(x => x.EmployeeID == model.EmployeeID).Select(x => x.GetViewModel).ToList(); + return context.PCS.Include(x => x.Employee).Where(x => x.EmployeeID == model.EmployeeID).Select(x => x.GetViewModel).ToList(); } return context.PCS.Include(x => x.Employee).Include(x => x.Request).Where(p => context.Requests.Where(r => context.Orders.Where(o => o.DateCreate >= model.DateFrom && o.DateCreate <= model.DateTo).Select(o => o.ID).Contains(r.OrderID)).Select(r => r.ID).Contains(p.RequestID)).ToList().Select(x => x.GetViewModel).ToList(); } @@ -43,7 +43,7 @@ namespace ComputerStoreDatabaseImplement.Implements public List GetFullList() { using var context = new ComputerStoreDatabase(); - return context.PCS.Include(x => x.Employee).Include(x => x.Request).ToList().Select(x => x.GetViewModel).ToList(); + return context.PCS.Include(x => x.Employee).Include(x => x.Request).ThenInclude(x => x.PCs).ThenInclude(x => x.Component).ToList().Select(x => x.GetViewModel).ToList(); } public PCViewModel? Insert(PCBindingModel model) @@ -72,7 +72,7 @@ namespace ComputerStoreDatabaseImplement.Implements using var transaction = context.Database.BeginTransaction(); try { - var specPC = context.PCs.FirstOrDefault(x => x.ID == model.ID); + var specPC = context.PCS.FirstOrDefault(x => x.ID == model.ID); if(specPC == null) { return null; } specPC.Update(model); @@ -93,7 +93,7 @@ namespace ComputerStoreDatabaseImplement.Implements using var context = new ComputerStoreDatabase(); var specPC = context.PCS.Include(x => x.Request).FirstOrDefault(x => x.ID == model.ID); if(specPC == null) { return null;} - context.PCs.Remove(specPC); + context.PCS.Remove(specPC); context.SaveChanges(); return specPC.GetViewModel; } diff --git a/ComputerStoreDatabaseImplement/Models/PC.cs b/ComputerStoreDatabaseImplement/Models/PC.cs index 98fc316..6495324 100644 --- a/ComputerStoreDatabaseImplement/Models/PC.cs +++ b/ComputerStoreDatabaseImplement/Models/PC.cs @@ -1,11 +1,13 @@ using ComputerStoreContracts.BindingModels; using ComputerStoreContracts.ViewModels; using ComputerStoreDataModels.Models; +using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; +using System.Security.Cryptography.X509Certificates; using System.Text; using System.Threading.Tasks; @@ -65,16 +67,25 @@ namespace ComputerStoreDatabaseImplement.Models PCComponents = model.PCComponents; } - public PCViewModel GetViewModel => new() + public PCViewModel GetViewModel { - ID = ID, - Name = Name, - Price = Price, - EmployeeID = EmployeeID, - EmployeeUsername = Employee.Username, - RequestID = RequestID, - PCComponents = PCComponents - }; + + get + { + using var context = new ComputerStoreDatabase(); + return new PCViewModel + { + ID = ID, + Name = Name, + Price = Price, + EmployeeID = EmployeeID, + EmployeeUsername = Employee.Username, + RequestID = RequestID, + PCComponents = context.RequestComponents.Include(x => x.Component).Where(x => x.PCID == ID).ToDictionary(x => x.ComponentID, x => (x.Component as IComponentModel, x.Count)) + }; + } + + } public void UpdateComponents(ComputerStoreDatabase context, PCBindingModel model) {