From b9747e4e18c04cc1a8a9eaab8a8e16c78d3cbee0 Mon Sep 17 00:00:00 2001 From: Viltskaa Date: Sun, 12 Mar 2023 20:49:40 +0400 Subject: [PATCH 1/3] b_logic + contracts --- .../OfficePackage/AbstractSaveToExcel.cs | 77 +++++ .../OfficePackage/AbstractSaveToPdf.cs | 52 +++ .../OfficePackage/AbstractSaveToWord.cs | 41 +++ .../HelpersEnum/ExcelStyleInfoType.cs | 7 + .../HelpersEnum/PdfParagraphAlignmentType.cs | 9 + .../HelpersEnum/WordJustificationType.cs | 7 + .../HelpersModels/ExcelCellParameters.cs | 13 + .../OfficePackage/HelpersModels/ExcelInfo.cs | 11 + .../HelpersModels/ExcelMergeParameters.cs | 9 + .../OfficePackage/HelpersModels/PdfInfo.cs | 13 + .../HelpersModels/PdfParagraph.cs | 11 + .../HelpersModels/PdfRowParameters.cs | 11 + .../OfficePackage/HelpersModels/WordInfo.cs | 11 + .../HelpersModels/WordParagraph.cs | 8 + .../HelpersModels/WordTextProperties.cs | 11 + .../OfficePackage/Implements/SaveToExcel.cs | 298 ++++++++++++++++++ .../OfficePackage/Implements/SaveToPdf.cs | 95 ++++++ .../OfficePackage/Implements/SaveToWord.cs | 114 +++++++ .../SushiBarBusinessLogic.csproj | 2 + .../BindingModels/ReportBindingModel.cs | 9 + .../BusinessLogicsContracts/IReportLogic.cs | 15 + .../ViewModels/ReportOrdersViewModel.cs | 10 + .../ReportSushiComponentViewModel.cs | 9 + .../SushiBarFileImplement/Models/Store.cs | 104 ++++++ 24 files changed, 947 insertions(+) create mode 100644 SushiBar/SushiBarBusinessLogic/OfficePackage/AbstractSaveToExcel.cs create mode 100644 SushiBar/SushiBarBusinessLogic/OfficePackage/AbstractSaveToPdf.cs create mode 100644 SushiBar/SushiBarBusinessLogic/OfficePackage/AbstractSaveToWord.cs create mode 100644 SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersEnum/ExcelStyleInfoType.cs create mode 100644 SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersEnum/PdfParagraphAlignmentType.cs create mode 100644 SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersEnum/WordJustificationType.cs create mode 100644 SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/ExcelCellParameters.cs create mode 100644 SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/ExcelInfo.cs create mode 100644 SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/ExcelMergeParameters.cs create mode 100644 SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/PdfInfo.cs create mode 100644 SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/PdfParagraph.cs create mode 100644 SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/PdfRowParameters.cs create mode 100644 SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/WordInfo.cs create mode 100644 SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/WordParagraph.cs create mode 100644 SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/WordTextProperties.cs create mode 100644 SushiBar/SushiBarBusinessLogic/OfficePackage/Implements/SaveToExcel.cs create mode 100644 SushiBar/SushiBarBusinessLogic/OfficePackage/Implements/SaveToPdf.cs create mode 100644 SushiBar/SushiBarBusinessLogic/OfficePackage/Implements/SaveToWord.cs create mode 100644 SushiBar/SushiBarContracts/BindingModels/ReportBindingModel.cs create mode 100644 SushiBar/SushiBarContracts/BusinessLogicsContracts/IReportLogic.cs create mode 100644 SushiBar/SushiBarContracts/ViewModels/ReportOrdersViewModel.cs create mode 100644 SushiBar/SushiBarContracts/ViewModels/ReportSushiComponentViewModel.cs create mode 100644 SushiBar/SushiBarFileImplement/Models/Store.cs diff --git a/SushiBar/SushiBarBusinessLogic/OfficePackage/AbstractSaveToExcel.cs b/SushiBar/SushiBarBusinessLogic/OfficePackage/AbstractSaveToExcel.cs new file mode 100644 index 0000000..53f18a3 --- /dev/null +++ b/SushiBar/SushiBarBusinessLogic/OfficePackage/AbstractSaveToExcel.cs @@ -0,0 +1,77 @@ +using SushiBarBusinessLogic.OfficePackage.HelpersEnum; +using SushiBarBusinessLogic.OfficePackage.HelpersModels; + +namespace SushiBarBusinessLogic.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 pc in info.SushiComponents) + { + InsertCellInWorksheet(new ExcelCellParameters + { + ColumnName = "A", + RowIndex = rowIndex, + Text = pc.ComponentName, + StyleInfo = ExcelStyleInfoType.Text + }); + rowIndex++; + foreach (var product in pc.Sushi) + { + InsertCellInWorksheet(new ExcelCellParameters + { + ColumnName = "B", + RowIndex = rowIndex, + Text = product.Item1, + StyleInfo = + ExcelStyleInfoType.TextWithBroder + }); + InsertCellInWorksheet(new ExcelCellParameters + { + ColumnName = "C", + RowIndex = rowIndex, + Text = product.Item2.ToString(), + StyleInfo = + ExcelStyleInfoType.TextWithBroder + }); + rowIndex++; + } + InsertCellInWorksheet(new ExcelCellParameters + { + ColumnName = "A", + RowIndex = rowIndex, + Text = "Итого", + StyleInfo = ExcelStyleInfoType.Text + }); + InsertCellInWorksheet(new ExcelCellParameters + { + ColumnName = "C", + RowIndex = rowIndex, + Text = pc.TotalCount.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/SushiBar/SushiBarBusinessLogic/OfficePackage/AbstractSaveToPdf.cs b/SushiBar/SushiBarBusinessLogic/OfficePackage/AbstractSaveToPdf.cs new file mode 100644 index 0000000..29776d3 --- /dev/null +++ b/SushiBar/SushiBarBusinessLogic/OfficePackage/AbstractSaveToPdf.cs @@ -0,0 +1,52 @@ +using SushiBarBusinessLogic.OfficePackage.HelpersEnum; +using SushiBarBusinessLogic.OfficePackage.HelpersModels; + +namespace SushiBarBusinessLogic.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 = $"с{ info.DateFrom.ToShortDateString() } по { info.DateTo.ToShortDateString() }", Style= "Normal", + ParagraphAlignment = PdfParagraphAlignmentType.Center + }); + CreateTable(new List { "2cm", "3cm", "6cm", "3cm" }); + CreateRow(new PdfRowParameters + { + Texts = new List { "Номер", "Дата заказа", "Изделие","Сумма" }, + Style = "NormalTitle", + ParagraphAlignment = PdfParagraphAlignmentType.Center + }); + foreach (var order in info.Orders) + { + CreateRow(new PdfRowParameters + { + Texts = new List { order.Id.ToString(), order.DateCreate.ToShortDateString(), order.SushiName, order.Sum.ToString() }, + Style = "Normal", + ParagraphAlignment = PdfParagraphAlignmentType.Left + }); + } + CreateParagraph(new PdfParagraph + { + Text = $"Итого: {info.Orders.Sum(x=> x.Sum)}\t", + Style = "Normal", + ParagraphAlignment = PdfParagraphAlignmentType.Rigth + }); + SavePdf(info); + } + protected abstract void CreatePdf(PdfInfo info); + protected abstract void CreateParagraph(PdfParagraph paragraph); + protected abstract void CreateTable(List columns); + protected abstract void CreateRow(PdfRowParameters rowParameters); + protected abstract void SavePdf(PdfInfo info); + } +} diff --git a/SushiBar/SushiBarBusinessLogic/OfficePackage/AbstractSaveToWord.cs b/SushiBar/SushiBarBusinessLogic/OfficePackage/AbstractSaveToWord.cs new file mode 100644 index 0000000..f18c505 --- /dev/null +++ b/SushiBar/SushiBarBusinessLogic/OfficePackage/AbstractSaveToWord.cs @@ -0,0 +1,41 @@ +using SushiBarBusinessLogic.OfficePackage.HelpersEnum; +using SushiBarBusinessLogic.OfficePackage.HelpersModels; + +namespace SushiBarBusinessLogic.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 component in info.Components) + { + CreateParagraph(new WordParagraph + { + Texts = new List<(string, WordTextProperties)> { (component.ComponentName, new WordTextProperties { 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/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersEnum/ExcelStyleInfoType.cs b/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersEnum/ExcelStyleInfoType.cs new file mode 100644 index 0000000..507e22e --- /dev/null +++ b/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersEnum/ExcelStyleInfoType.cs @@ -0,0 +1,7 @@ +namespace SushiBarBusinessLogic.OfficePackage.HelpersEnum +{ + public enum ExcelStyleInfoType + { + Title, Text, TextWithBroder + } +} diff --git a/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersEnum/PdfParagraphAlignmentType.cs b/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersEnum/PdfParagraphAlignmentType.cs new file mode 100644 index 0000000..dbb5b0b --- /dev/null +++ b/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersEnum/PdfParagraphAlignmentType.cs @@ -0,0 +1,9 @@ +namespace SushiBarBusinessLogic.OfficePackage.HelpersEnum +{ + public enum PdfParagraphAlignmentType + { + Center, + Left, + Rigth + } +} diff --git a/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersEnum/WordJustificationType.cs b/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersEnum/WordJustificationType.cs new file mode 100644 index 0000000..5ee59ae --- /dev/null +++ b/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersEnum/WordJustificationType.cs @@ -0,0 +1,7 @@ +namespace SushiBarBusinessLogic.OfficePackage.HelpersEnum +{ + public enum WordJustificationType + { + Center,Both + } +} diff --git a/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/ExcelCellParameters.cs b/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/ExcelCellParameters.cs new file mode 100644 index 0000000..fb59d30 --- /dev/null +++ b/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/ExcelCellParameters.cs @@ -0,0 +1,13 @@ +using SushiBarBusinessLogic.OfficePackage.HelpersEnum; + +namespace SushiBarBusinessLogic.OfficePackage.HelpersModels +{ + 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/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/ExcelInfo.cs b/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/ExcelInfo.cs new file mode 100644 index 0000000..b0e01e1 --- /dev/null +++ b/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/ExcelInfo.cs @@ -0,0 +1,11 @@ +using SushiBarContracts.ViewModels; + +namespace SushiBarBusinessLogic.OfficePackage.HelpersModels +{ + public class ExcelInfo + { + public string FileName { get; set; } = string.Empty; + public string Title { get; set; } = string.Empty; + public List SushiComponents{ get; set; } = new(); + } +} diff --git a/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/ExcelMergeParameters.cs b/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/ExcelMergeParameters.cs new file mode 100644 index 0000000..b391f2a --- /dev/null +++ b/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/ExcelMergeParameters.cs @@ -0,0 +1,9 @@ +namespace SushiBarBusinessLogic.OfficePackage.HelpersModels +{ + 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/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/PdfInfo.cs b/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/PdfInfo.cs new file mode 100644 index 0000000..1be62da --- /dev/null +++ b/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/PdfInfo.cs @@ -0,0 +1,13 @@ +using SushiBarContracts.ViewModels; + +namespace SushiBarBusinessLogic.OfficePackage.HelpersModels +{ + 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 Orders { get; set; } = new(); + } +} diff --git a/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/PdfParagraph.cs b/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/PdfParagraph.cs new file mode 100644 index 0000000..c81d18b --- /dev/null +++ b/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/PdfParagraph.cs @@ -0,0 +1,11 @@ +using SushiBarBusinessLogic.OfficePackage.HelpersEnum; + +namespace SushiBarBusinessLogic.OfficePackage.HelpersModels +{ + 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/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/PdfRowParameters.cs b/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/PdfRowParameters.cs new file mode 100644 index 0000000..58eaba3 --- /dev/null +++ b/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/PdfRowParameters.cs @@ -0,0 +1,11 @@ +using SushiBarBusinessLogic.OfficePackage.HelpersEnum; + +namespace SushiBarBusinessLogic.OfficePackage.HelpersModels +{ + public class PdfRowParameters + { + public List Texts { get; set; } = new(); + public string Style { get; set; } = string.Empty; + public PdfParagraphAlignmentType ParagraphAlignment { get; set; } + } +} diff --git a/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/WordInfo.cs b/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/WordInfo.cs new file mode 100644 index 0000000..f8c03c0 --- /dev/null +++ b/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/WordInfo.cs @@ -0,0 +1,11 @@ +using SushiBarContracts.ViewModels; + +namespace SushiBarBusinessLogic.OfficePackage.HelpersModels +{ + public class WordInfo + { + public string FileName { get; set; } = string.Empty; + public string Title { get; set; } = string.Empty; + public List Components { get; set; } = new(); + } +} diff --git a/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/WordParagraph.cs b/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/WordParagraph.cs new file mode 100644 index 0000000..07d1d62 --- /dev/null +++ b/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/WordParagraph.cs @@ -0,0 +1,8 @@ +namespace SushiBarBusinessLogic.OfficePackage.HelpersModels +{ + public class WordParagraph + { + public List<(string, WordTextProperties)> Texts { get; set; } = new(); + public WordTextProperties? TextProperties { get; set; } + } +} diff --git a/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/WordTextProperties.cs b/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/WordTextProperties.cs new file mode 100644 index 0000000..e3f58d7 --- /dev/null +++ b/SushiBar/SushiBarBusinessLogic/OfficePackage/HelpersModels/WordTextProperties.cs @@ -0,0 +1,11 @@ +using SushiBarBusinessLogic.OfficePackage.HelpersEnum; + +namespace SushiBarBusinessLogic.OfficePackage.HelpersModels +{ + public class WordTextProperties + { + public string Size { get; set; } = string.Empty; + public bool Bold { get; set; } + public WordJustificationType JustificationType { get; set; } + } +} diff --git a/SushiBar/SushiBarBusinessLogic/OfficePackage/Implements/SaveToExcel.cs b/SushiBar/SushiBarBusinessLogic/OfficePackage/Implements/SaveToExcel.cs new file mode 100644 index 0000000..df06130 --- /dev/null +++ b/SushiBar/SushiBarBusinessLogic/OfficePackage/Implements/SaveToExcel.cs @@ -0,0 +1,298 @@ +using DocumentFormat.OpenXml.Office2010.Excel; +using DocumentFormat.OpenXml.Office2013.Excel; +using DocumentFormat.OpenXml.Office2016.Excel; +using DocumentFormat.OpenXml.Packaging; +using DocumentFormat.OpenXml.Spreadsheet; +using DocumentFormat.OpenXml; +using SushiBarBusinessLogic.OfficePackage.HelpersEnum; +using SushiBarBusinessLogic.OfficePackage.HelpersModels; + +namespace SushiBarBusinessLogic.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(); + _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.Close(); + } + } +} diff --git a/SushiBar/SushiBarBusinessLogic/OfficePackage/Implements/SaveToPdf.cs b/SushiBar/SushiBarBusinessLogic/OfficePackage/Implements/SaveToPdf.cs new file mode 100644 index 0000000..413bc89 --- /dev/null +++ b/SushiBar/SushiBarBusinessLogic/OfficePackage/Implements/SaveToPdf.cs @@ -0,0 +1,95 @@ +using SushiBarBusinessLogic.OfficePackage.HelpersEnum; +using SushiBarBusinessLogic.OfficePackage.HelpersModels; +using MigraDoc.DocumentObjectModel; +using MigraDoc.DocumentObjectModel.Tables; +using MigraDoc.Rendering; + +namespace SushiBarBusinessLogic.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.Rigth => 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 CreatePdf(PdfInfo info) + { + _document = new Document(); + DefineStyles(_document); + _section = _document.AddSection(); + } + 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 = pdfParagraph.Style; + } + 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 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 SavePdf(PdfInfo info) + { + var renderer = new PdfDocumentRenderer(true) + { + Document = _document + }; + renderer.RenderDocument(); + renderer.PdfDocument.Save(info.FileName); + } + + } +} diff --git a/SushiBar/SushiBarBusinessLogic/OfficePackage/Implements/SaveToWord.cs b/SushiBar/SushiBarBusinessLogic/OfficePackage/Implements/SaveToWord.cs new file mode 100644 index 0000000..fc1a670 --- /dev/null +++ b/SushiBar/SushiBarBusinessLogic/OfficePackage/Implements/SaveToWord.cs @@ -0,0 +1,114 @@ +using static System.Net.Mime.MediaTypeNames; +using SushiBarBusinessLogic.OfficePackage.HelpersEnum; +using SushiBarBusinessLogic.OfficePackage.HelpersModels; +using System.Reflection.Metadata; +using DocumentFormat.OpenXml.Packaging; +using DocumentFormat.OpenXml.Wordprocessing; +using DocumentFormat.OpenXml; +using Document = DocumentFormat.OpenXml.Wordprocessing.Document; +using Text = DocumentFormat.OpenXml.Wordprocessing.Text; + +namespace SushiBarBusinessLogic.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 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 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 SaveWord(WordInfo info) + { + if (_docBody == null || _wordDocument == null) + { + return; + } + _docBody.AppendChild(CreateSectionProperties()); + _wordDocument.MainDocumentPart!.Document.Save(); + _wordDocument.Close(); + } + + } +} diff --git a/SushiBar/SushiBarBusinessLogic/SushiBarBusinessLogic.csproj b/SushiBar/SushiBarBusinessLogic/SushiBarBusinessLogic.csproj index 015a4b0..e78c618 100644 --- a/SushiBar/SushiBarBusinessLogic/SushiBarBusinessLogic.csproj +++ b/SushiBar/SushiBarBusinessLogic/SushiBarBusinessLogic.csproj @@ -7,7 +7,9 @@ + + diff --git a/SushiBar/SushiBarContracts/BindingModels/ReportBindingModel.cs b/SushiBar/SushiBarContracts/BindingModels/ReportBindingModel.cs new file mode 100644 index 0000000..ad46901 --- /dev/null +++ b/SushiBar/SushiBarContracts/BindingModels/ReportBindingModel.cs @@ -0,0 +1,9 @@ +namespace SushiBarContracts.BindingModels +{ + public class ReportBindingModel + { + public string FileName { get; set; } = string.Empty; + public DateTime? DateFrom { get; set; } + public DateTime? DateTo { get; set; } + } +} diff --git a/SushiBar/SushiBarContracts/BusinessLogicsContracts/IReportLogic.cs b/SushiBar/SushiBarContracts/BusinessLogicsContracts/IReportLogic.cs new file mode 100644 index 0000000..9d3e640 --- /dev/null +++ b/SushiBar/SushiBarContracts/BusinessLogicsContracts/IReportLogic.cs @@ -0,0 +1,15 @@ +using SushiBarContracts.BindingModels; +using SushiBarContracts.ViewModels; + +namespace SushiBarContracts.BusinessLogicsContracts +{ + public interface IReportLogic + { + List GetProductComponent(); + List GetOrders(ReportBindingModel model); + void SaveComponentsToWordFile(ReportBindingModel model); + void SaveProductComponentToExcelFile(ReportBindingModel model); + void SaveOrdersToPdfFile(ReportBindingModel model); + + } +} diff --git a/SushiBar/SushiBarContracts/ViewModels/ReportOrdersViewModel.cs b/SushiBar/SushiBarContracts/ViewModels/ReportOrdersViewModel.cs new file mode 100644 index 0000000..1405643 --- /dev/null +++ b/SushiBar/SushiBarContracts/ViewModels/ReportOrdersViewModel.cs @@ -0,0 +1,10 @@ +namespace SushiBarContracts.ViewModels +{ + public class ReportOrdersViewModel + { + public int Id { get; set; } + public DateTime DateCreate { get; set; } + public string SushiName { get; set; } = string.Empty; + public double Sum { get; set; } + } +} diff --git a/SushiBar/SushiBarContracts/ViewModels/ReportSushiComponentViewModel.cs b/SushiBar/SushiBarContracts/ViewModels/ReportSushiComponentViewModel.cs new file mode 100644 index 0000000..1759900 --- /dev/null +++ b/SushiBar/SushiBarContracts/ViewModels/ReportSushiComponentViewModel.cs @@ -0,0 +1,9 @@ +namespace SushiBarContracts.ViewModels +{ + public class ReportSushiComponentViewModel + { + public string ComponentName { get; set; } = string.Empty; + public int TotalCount { get; set; } + public List> Sushi { get; set; } = new(); + } +} diff --git a/SushiBar/SushiBarFileImplement/Models/Store.cs b/SushiBar/SushiBarFileImplement/Models/Store.cs new file mode 100644 index 0000000..0456b02 --- /dev/null +++ b/SushiBar/SushiBarFileImplement/Models/Store.cs @@ -0,0 +1,104 @@ +using System.Xml.Linq; +using SushiBarContracts.BindingModels; +using SushiBarContracts.ViewModels; +using SushiBarDataModels.Models; + +namespace SushiBarFileImplement.Models +{ + public class Store : IStoreModel + { + public int Id { get; private init; } + public string StoreName { get; private set; } = string.Empty; + public string StoreAddress { get; private set; } = string.Empty; + public DateTime OpeningDate { get; private set; } + public int maxSushi { get; private set; } + + private Dictionary _sushi = new(); + + public Dictionary Sushis + { + get + { + var source = DataFileSingleton.GetInstance(); + return _sushi.ToDictionary(i => i.Key, + i => (source.Sushis.FirstOrDefault(z => z.Id == i.Key)! as ISushiModel, i.Value)); + } + private set => Sushis = value; + } + + public static Store? Create(StoreBindingModel? model) + { + if (model == null) + { + return null; + } + + return new Store() + { + Id = model.Id, + StoreName = model.StoreName, + OpeningDate = model.OpeningDate, + StoreAddress = model.StoreAddress, + _sushi = model.Sushis + .ToDictionary(x => x.Key, x => x.Value.Item2), + maxSushi = model.maxSushi + }; + } + + public static Store? Create(XElement? element) + { + if (element == null) + { + return null; + } + + return new Store() + { + Id = Convert.ToInt32(element.Attribute("Id")!.Value), + StoreName = element.Element("StoreName")!.Value, + StoreAddress = element.Element("StoreAddress")!.Value, + maxSushi = Convert.ToInt32(element.Element("MaxSushi")!.Value), + _sushi = element.Element("Sushis") + !.Elements("Sushi") + .ToDictionary( + x => Convert.ToInt32(x.Element("Key")?.Value), + x => Convert.ToInt32(x.Element("Value")?.Value) + ) + }; + } + + public void Update(StoreBindingModel? model) + { + if (model == null) + { + return; + } + + StoreName = model.StoreName; + StoreAddress = model.StoreAddress; + _sushi = model.Sushis + .ToDictionary(x => x.Key, x => x.Value.Item2); + maxSushi = model.maxSushi; + } + + public StoreViewModel GetViewModel => new() + { + Id = Id, + StoreName = StoreName, + Sushis = Sushis, + StoreAddress = StoreAddress, + maxSushi = maxSushi + }; + + public XElement GetXElement => new("Store", + new XAttribute("Id", Id), + new XElement("StoreName", StoreName), + new XElement("StoreAddress", StoreAddress), + new XElement("MaxSushi", maxSushi), + new XElement("Sushis", _sushi.Select(x => new XElement("Sushi", + new XElement("Key", x.Key), + new XElement("Value", x.Value)) + ).ToArray()) + ); + } +} -- 2.25.1 From 56ad2da26495186771f40a4ac365d7bab22782a6 Mon Sep 17 00:00:00 2001 From: Viltskaa Date: Sun, 12 Mar 2023 20:56:37 +0400 Subject: [PATCH 2/3] Report Logic --- .../BusinessLogics/ReportLogic.cs | 105 ++++++++++++++++++ .../SearchModels/OrderSearchModel.cs | 2 + 2 files changed, 107 insertions(+) create mode 100644 SushiBar/SushiBarBusinessLogic/BusinessLogics/ReportLogic.cs diff --git a/SushiBar/SushiBarBusinessLogic/BusinessLogics/ReportLogic.cs b/SushiBar/SushiBarBusinessLogic/BusinessLogics/ReportLogic.cs new file mode 100644 index 0000000..704746e --- /dev/null +++ b/SushiBar/SushiBarBusinessLogic/BusinessLogics/ReportLogic.cs @@ -0,0 +1,105 @@ +using SushiBarBusinessLogic.OfficePackage.HelpersModels; +using SushiBarBusinessLogic.OfficePackage; +using SushiBarContracts.BindingModels; +using SushiBarContracts.BusinessLogicsContracts; +using SushiBarContracts.SearchModels; +using SushiBarContracts.StoragesContracts; +using SushiBarContracts.ViewModels; + +namespace SushiBarBusinessLogic.BusinessLogics +{ + public class ReportLogic : IReportLogic + { + private readonly IComponentStorage _componentStorage; + private readonly ISushiStorage _productStorage; + private readonly IOrderStorage _orderStorage; + private readonly AbstractSaveToExcel _saveToExcel; + private readonly AbstractSaveToWord _saveToWord; + private readonly AbstractSaveToPdf _saveToPdf; + public ReportLogic( + ISushiStorage productStorage, + IComponentStorage componentStorage, + IOrderStorage orderStorage, + AbstractSaveToExcel saveToExcel, + AbstractSaveToWord saveToWord, + AbstractSaveToPdf saveToPdf) + { + _productStorage = productStorage; + _componentStorage = componentStorage; + _orderStorage = orderStorage; + _saveToExcel = saveToExcel; + _saveToWord = saveToWord; + _saveToPdf = saveToPdf; + } + public List GetProductComponent() + { + var components = _componentStorage.GetFullList(); + var products = _productStorage.GetFullList(); + var list = new List(); + foreach (var component in components) + { + var record = new ReportSushiComponentViewModel + { + ComponentName = component.ComponentName, + Sushi = new List>(), + TotalCount = 0 + }; + foreach (var product in products) + { + if (product.SushiComponents.ContainsKey(component.Id)) + { + record.Sushi.Add(new Tuple(product.SushiName, product.SushiComponents[component.Id].Item2)); + record.TotalCount += product.SushiComponents[component.Id].Item2; + } + } + list.Add(record); + } + return list; + } + public List GetOrders(ReportBindingModel model) + { + return _orderStorage.GetFilteredList(new OrderSearchModel + { + DateFrom = model.DateFrom, + DateTo = model.DateTo + }) + .Select(x => new ReportOrdersViewModel + { + Id = x.Id, + DateCreate = x.DateCreate, + SushiName = x.SushiName, + Sum = x.Sum + }) + .ToList(); + } + public void SaveComponentsToWordFile(ReportBindingModel model) + { + _saveToWord.CreateDoc(new WordInfo + { + FileName = model.FileName, + Title = "Список компонент", + Components = _componentStorage.GetFullList() + }); + } + public void SaveProductComponentToExcelFile(ReportBindingModel model) + { + _saveToExcel.CreateReport(new ExcelInfo + { + FileName = model.FileName, + Title = "Список компонент", + SushiComponents = GetProductComponent() + }); + } + public void SaveOrdersToPdfFile(ReportBindingModel model) + { + _saveToPdf.CreateDoc(new PdfInfo + { + FileName = model.FileName, + Title = "Список заказов", + DateFrom = model.DateFrom!.Value, + DateTo = model.DateTo!.Value, + Orders = GetOrders(model) + }); + } + } +} diff --git a/SushiBar/SushiBarContracts/SearchModels/OrderSearchModel.cs b/SushiBar/SushiBarContracts/SearchModels/OrderSearchModel.cs index becbcd5..bab174d 100644 --- a/SushiBar/SushiBarContracts/SearchModels/OrderSearchModel.cs +++ b/SushiBar/SushiBarContracts/SearchModels/OrderSearchModel.cs @@ -3,5 +3,7 @@ public class OrderSearchModel { public int? Id { get; set; } + public DateTime? DateFrom { get; set; } + public DateTime? DateTo { get; set; } } } -- 2.25.1 From 55c5aedfd2e89d0201256df2f072968d9bce2254 Mon Sep 17 00:00:00 2001 From: Viltskaa Date: Tue, 14 Mar 2023 10:12:32 +0400 Subject: [PATCH 3/3] ready lab work --- SushiBar/SushiBar/FormMain.Designer.cs | 42 +- SushiBar/SushiBar/FormMain.cs | 38 +- .../SushiBar/FormReportOrders.Designer.cs | 131 ++++ SushiBar/SushiBar/FormReportOrders.cs | 100 +++ SushiBar/SushiBar/FormReportOrders.resx | 60 ++ .../FormSushiOnComponents.Designer.cs | 101 +++ SushiBar/SushiBar/FormSushiOnComponents.cs | 77 +++ SushiBar/SushiBar/FormSushiOnComponents.resx | 69 ++ SushiBar/SushiBar/Program.cs | 8 + .../SushiBar/Properties/Resources.Designer.cs | 63 ++ SushiBar/SushiBar/Properties/Resources.resx | 120 ++++ SushiBar/SushiBar/Report.rdlc | 588 ++++++++++++++++++ SushiBar/SushiBar/SushiBar.csproj | 17 + .../BusinessLogics/ReportLogic.cs | 43 +- .../OfficePackage/AbstractSaveToExcel.cs | 15 +- .../OfficePackage/AbstractSaveToPdf.cs | 14 +- .../OfficePackage/AbstractSaveToWord.cs | 10 +- .../HelpersEnum/WordJustificationType.cs | 2 +- .../OfficePackage/HelpersModels/ExcelInfo.cs | 2 +- .../OfficePackage/HelpersModels/WordInfo.cs | 2 +- .../OfficePackage/Implements/SaveToWord.cs | 1 + .../BusinessLogicsContracts/IReportLogic.cs | 4 +- .../ViewModels/ReportOrdersViewModel.cs | 1 + .../ReportSushiComponentViewModel.cs | 4 +- .../Implements/OrderStorage.cs | 12 +- .../Implements/OrderStorage.cs | 7 +- .../SushiBarFileImplement/Models/Store.cs | 104 ---- .../Implements/OrderStorage.cs | 23 +- 28 files changed, 1498 insertions(+), 160 deletions(-) create mode 100644 SushiBar/SushiBar/FormReportOrders.Designer.cs create mode 100644 SushiBar/SushiBar/FormReportOrders.cs create mode 100644 SushiBar/SushiBar/FormReportOrders.resx create mode 100644 SushiBar/SushiBar/FormSushiOnComponents.Designer.cs create mode 100644 SushiBar/SushiBar/FormSushiOnComponents.cs create mode 100644 SushiBar/SushiBar/FormSushiOnComponents.resx create mode 100644 SushiBar/SushiBar/Properties/Resources.Designer.cs create mode 100644 SushiBar/SushiBar/Properties/Resources.resx create mode 100644 SushiBar/SushiBar/Report.rdlc delete mode 100644 SushiBar/SushiBarFileImplement/Models/Store.cs diff --git a/SushiBar/SushiBar/FormMain.Designer.cs b/SushiBar/SushiBar/FormMain.Designer.cs index d372812..3c4ab1d 100644 --- a/SushiBar/SushiBar/FormMain.Designer.cs +++ b/SushiBar/SushiBar/FormMain.Designer.cs @@ -33,6 +33,10 @@ this.directoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.componentsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.sushiToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.reportsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.listComponentsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.componentsOnSushiToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.listOrdersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.buttonCreateOrder = new System.Windows.Forms.Button(); this.buttonSubmit = new System.Windows.Forms.Button(); this.buttonReady = new System.Windows.Forms.Button(); @@ -54,7 +58,8 @@ // menuStrip1 // this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.directoryToolStripMenuItem}); + this.directoryToolStripMenuItem, + this.reportsToolStripMenuItem}); this.menuStrip1.Location = new System.Drawing.Point(0, 0); this.menuStrip1.Name = "menuStrip1"; this.menuStrip1.Size = new System.Drawing.Size(940, 24); @@ -84,6 +89,37 @@ this.sushiToolStripMenuItem.Text = "Sushi"; this.sushiToolStripMenuItem.Click += new System.EventHandler(this.SushiToolStripMenuItem_Click); // + // reportsToolStripMenuItem + // + this.reportsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.listComponentsToolStripMenuItem, + this.componentsOnSushiToolStripMenuItem, + this.listOrdersToolStripMenuItem}); + this.reportsToolStripMenuItem.Name = "reportsToolStripMenuItem"; + this.reportsToolStripMenuItem.Size = new System.Drawing.Size(59, 20); + this.reportsToolStripMenuItem.Text = "Reports"; + // + // listComponentsToolStripMenuItem + // + this.listComponentsToolStripMenuItem.Name = "listComponentsToolStripMenuItem"; + this.listComponentsToolStripMenuItem.Size = new System.Drawing.Size(190, 22); + this.listComponentsToolStripMenuItem.Text = "List Sushi"; + this.listComponentsToolStripMenuItem.Click += new System.EventHandler(this.ListComponentsToolStripMenuItem_Click); + // + // componentsOnSushiToolStripMenuItem + // + this.componentsOnSushiToolStripMenuItem.Name = "componentsOnSushiToolStripMenuItem"; + this.componentsOnSushiToolStripMenuItem.Size = new System.Drawing.Size(190, 22); + this.componentsOnSushiToolStripMenuItem.Text = "Components on sushi"; + this.componentsOnSushiToolStripMenuItem.Click += new System.EventHandler(this.ComponentsOnSushiToolStripMenuItem_Click); + // + // listOrdersToolStripMenuItem + // + this.listOrdersToolStripMenuItem.Name = "listOrdersToolStripMenuItem"; + this.listOrdersToolStripMenuItem.Size = new System.Drawing.Size(190, 22); + this.listOrdersToolStripMenuItem.Text = "List Orders"; + this.listOrdersToolStripMenuItem.Click += new System.EventHandler(this.ListOrdersToolStripMenuItem_Click); + // // buttonCreateOrder // this.buttonCreateOrder.Location = new System.Drawing.Point(814, 27); @@ -170,5 +206,9 @@ private Button buttonReload; private ToolStripMenuItem componentsToolStripMenuItem; private ToolStripMenuItem sushiToolStripMenuItem; + private ToolStripMenuItem reportsToolStripMenuItem; + private ToolStripMenuItem listComponentsToolStripMenuItem; + private ToolStripMenuItem componentsOnSushiToolStripMenuItem; + private ToolStripMenuItem listOrdersToolStripMenuItem; } } \ No newline at end of file diff --git a/SushiBar/SushiBar/FormMain.cs b/SushiBar/SushiBar/FormMain.cs index b25ada8..ec7bade 100644 --- a/SushiBar/SushiBar/FormMain.cs +++ b/SushiBar/SushiBar/FormMain.cs @@ -1,4 +1,5 @@ using Microsoft.Extensions.Logging; +using SushiBarBusinessLogic.BusinessLogics; using SushiBarContracts.BindingModels; using SushiBarContracts.BusinessLogicsContracts; using SushiBarDataModels.Enums; @@ -10,11 +11,13 @@ namespace SushiBar private readonly ILogger _logger; private readonly IOrderLogic _orderLogic; - public FormMain(ILogger logger, IOrderLogic orderLogic) + private readonly IReportLogic _reportLogic; + public FormMain(ILogger logger, IOrderLogic orderLogic, IReportLogic reportLogic) { InitializeComponent(); _logger = logger; _orderLogic = orderLogic; + _reportLogic = reportLogic; } private void LoadData() @@ -170,5 +173,38 @@ namespace SushiBar form.ShowDialog(); } } + + private void ListComponentsToolStripMenuItem_Click(object sender, EventArgs e) + { + using var dialog = new SaveFileDialog { Filter = "docx|*.docx" }; + if (dialog.ShowDialog() == DialogResult.OK) + { + _reportLogic.SaveSushiToWordFile(new ReportBindingModel + { + FileName = dialog.FileName + }); + MessageBox.Show("Complete", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information); + } + } + + private void ComponentsOnSushiToolStripMenuItem_Click(object sender, EventArgs e) + { + var service = Program.ServiceProvider?.GetService(typeof(FormSushiOnComponents)); + if (service is FormSushiOnComponents form) + { + form.ShowDialog(); + } + + } + + private void ListOrdersToolStripMenuItem_Click(object sender, EventArgs e) + { + var service = Program.ServiceProvider?.GetService(typeof(FormReportOrders)); + if (service is FormReportOrders form) + { + form.ShowDialog(); + } + + } } } diff --git a/SushiBar/SushiBar/FormReportOrders.Designer.cs b/SushiBar/SushiBar/FormReportOrders.Designer.cs new file mode 100644 index 0000000..4d3641d --- /dev/null +++ b/SushiBar/SushiBar/FormReportOrders.Designer.cs @@ -0,0 +1,131 @@ +namespace SushiBar +{ + partial class FormReportOrders + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.panel = new System.Windows.Forms.Panel(); + this.buttonCreate = new System.Windows.Forms.Button(); + this.buttonSave = new System.Windows.Forms.Button(); + this.labelTo = new System.Windows.Forms.Label(); + this.dateTimePickerTo = new System.Windows.Forms.DateTimePicker(); + this.dateTimePickerFrom = new System.Windows.Forms.DateTimePicker(); + this.labelFrom = new System.Windows.Forms.Label(); + this.panel.SuspendLayout(); + this.SuspendLayout(); + // + // panel + // + this.panel.Controls.Add(this.buttonCreate); + this.panel.Controls.Add(this.buttonSave); + this.panel.Controls.Add(this.labelTo); + this.panel.Controls.Add(this.dateTimePickerTo); + this.panel.Controls.Add(this.dateTimePickerFrom); + this.panel.Controls.Add(this.labelFrom); + this.panel.Dock = System.Windows.Forms.DockStyle.Top; + this.panel.Location = new System.Drawing.Point(0, 0); + this.panel.Name = "panel"; + this.panel.Size = new System.Drawing.Size(800, 37); + this.panel.TabIndex = 0; + // + // buttonCreate + // + this.buttonCreate.Location = new System.Drawing.Point(617, 7); + this.buttonCreate.Name = "buttonCreate"; + this.buttonCreate.Size = new System.Drawing.Size(75, 23); + this.buttonCreate.TabIndex = 5; + this.buttonCreate.Text = "Create"; + this.buttonCreate.UseVisualStyleBackColor = true; + this.buttonCreate.Click += new System.EventHandler(this.ButtonCreate_Click); + // + // buttonSave + // + this.buttonSave.Location = new System.Drawing.Point(698, 7); + this.buttonSave.Name = "buttonSave"; + this.buttonSave.Size = new System.Drawing.Size(75, 23); + this.buttonSave.TabIndex = 4; + this.buttonSave.Text = "Save PDF"; + this.buttonSave.UseVisualStyleBackColor = true; + this.buttonSave.Click += new System.EventHandler(this.ButtonSave_Click); + // + // labelTo + // + this.labelTo.AutoSize = true; + this.labelTo.Location = new System.Drawing.Point(250, 11); + this.labelTo.Name = "labelTo"; + this.labelTo.Size = new System.Drawing.Size(19, 15); + this.labelTo.TabIndex = 3; + this.labelTo.Text = "To"; + // + // dateTimePickerTo + // + this.dateTimePickerTo.Location = new System.Drawing.Point(275, 5); + this.dateTimePickerTo.Name = "dateTimePickerTo"; + this.dateTimePickerTo.Size = new System.Drawing.Size(200, 23); + this.dateTimePickerTo.TabIndex = 2; + // + // dateTimePickerFrom + // + this.dateTimePickerFrom.Location = new System.Drawing.Point(44, 5); + this.dateTimePickerFrom.Name = "dateTimePickerFrom"; + this.dateTimePickerFrom.Size = new System.Drawing.Size(200, 23); + this.dateTimePickerFrom.TabIndex = 1; + // + // labelFrom + // + this.labelFrom.AutoSize = true; + this.labelFrom.Location = new System.Drawing.Point(3, 11); + this.labelFrom.Name = "labelFrom"; + this.labelFrom.Size = new System.Drawing.Size(35, 15); + this.labelFrom.TabIndex = 0; + this.labelFrom.Text = "From"; + // + // FormReportOrders + // + this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(800, 450); + this.Controls.Add(this.panel); + this.Name = "FormReportOrders"; + this.Text = "FormReportsOrders"; + this.panel.ResumeLayout(false); + this.panel.PerformLayout(); + this.ResumeLayout(false); + + } + + #endregion + + private Panel panel; + private Button buttonCreate; + private Button buttonSave; + private Label labelTo; + private DateTimePicker dateTimePickerTo; + private DateTimePicker dateTimePickerFrom; + private Label labelFrom; + } +} \ No newline at end of file diff --git a/SushiBar/SushiBar/FormReportOrders.cs b/SushiBar/SushiBar/FormReportOrders.cs new file mode 100644 index 0000000..af06e89 --- /dev/null +++ b/SushiBar/SushiBar/FormReportOrders.cs @@ -0,0 +1,100 @@ +using Microsoft.Extensions.Logging; +using Microsoft.Reporting.WinForms; +using SushiBarContracts.BindingModels; +using SushiBarContracts.BusinessLogicsContracts; +using System.Windows.Forms; + +namespace SushiBar +{ + public partial class FormReportOrders : Form + { + private readonly ReportViewer reportViewer; + private readonly ILogger _logger; + private readonly IReportLogic _logic; + + public FormReportOrders(ILogger logger, IReportLogic logic) + { + InitializeComponent(); + _logger = logger; + _logic = logic; + reportViewer = new ReportViewer + { + Dock = DockStyle.Fill + }; + reportViewer.LocalReport.LoadReportDefinition(new FileStream("Report.rdlc", FileMode.Open)); + Controls.Clear(); + Controls.Add(reportViewer); + Controls.Add(panel); + } + + private void ButtonCreate_Click(object sender, EventArgs e) + { + if (dateTimePickerFrom.Value.Date >= dateTimePickerTo.Value.Date) + { + MessageBox.Show("Дата начала должна быть меньше даты окончания", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); + return; + } + try + { + var dataSource = _logic.GetOrders(new ReportBindingModel + { + DateFrom = dateTimePickerFrom.Value, + DateTo = dateTimePickerTo.Value + }); + var source = new ReportDataSource("DataSetOrders", dataSource); + reportViewer.LocalReport.DataSources.Clear(); + reportViewer.LocalReport.DataSources.Add(source); + var parameters = new[] { + new ReportParameter("ReportParameterPeriod", $"c {dateTimePickerFrom.Value.ToShortDateString()} по {dateTimePickerTo.Value.ToShortDateString()}") + }; + reportViewer.LocalReport.SetParameters(parameters); + reportViewer.RefreshReport(); + _logger.LogInformation( + "Загрузка списка заказов на период {From}-{To}", + dateTimePickerFrom.Value.ToShortDateString(), + dateTimePickerTo.Value.ToShortDateString() + ); + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка загрузки списка заказов на период"); + MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + + } + + private void ButtonSave_Click(object sender, EventArgs e) + { + if (dateTimePickerFrom.Value.Date >= dateTimePickerTo.Value.Date) + { + MessageBox.Show("Дата начала должна быть меньше даты окончания", + "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); + return; + } + using var dialog = new SaveFileDialog + { + Filter = "pdf|*.pdf" + }; + if (dialog.ShowDialog() == DialogResult.OK) + { + try + { + _logic.SaveOrdersToPdfFile(new ReportBindingModel + { + FileName = dialog.FileName, + DateFrom = dateTimePickerFrom.Value, + DateTo = dateTimePickerTo.Value + }); + _logger.LogInformation("Сохранение списка заказов на период{ From}-{ To}", dateTimePickerFrom.Value.ToShortDateString(), dateTimePickerTo.Value.ToShortDateString()); + MessageBox.Show("Выполнено", "Успех", MessageBoxButtons.OK, MessageBoxIcon.Information); + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка сохранения списка заказов на период"); + MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + + } + } +} diff --git a/SushiBar/SushiBar/FormReportOrders.resx b/SushiBar/SushiBar/FormReportOrders.resx new file mode 100644 index 0000000..f298a7b --- /dev/null +++ b/SushiBar/SushiBar/FormReportOrders.resx @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/SushiBar/SushiBar/FormSushiOnComponents.Designer.cs b/SushiBar/SushiBar/FormSushiOnComponents.Designer.cs new file mode 100644 index 0000000..d697e29 --- /dev/null +++ b/SushiBar/SushiBar/FormSushiOnComponents.Designer.cs @@ -0,0 +1,101 @@ +namespace SushiBar +{ + partial class FormSushiOnComponents + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.ButtonSave = new System.Windows.Forms.Button(); + this.dataGridView = new System.Windows.Forms.DataGridView(); + this.component = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.sushi = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.count = new System.Windows.Forms.DataGridViewTextBoxColumn(); + ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit(); + this.SuspendLayout(); + // + // ButtonSave + // + this.ButtonSave.Location = new System.Drawing.Point(12, 12); + this.ButtonSave.Name = "ButtonSave"; + this.ButtonSave.Size = new System.Drawing.Size(155, 23); + this.ButtonSave.TabIndex = 0; + this.ButtonSave.Text = "Save excel file"; + this.ButtonSave.UseVisualStyleBackColor = true; + this.ButtonSave.Click += new System.EventHandler(this.ButtonSave_Click); + // + // dataGridView + // + this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; + this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.component, + this.sushi, + this.count}); + this.dataGridView.Location = new System.Drawing.Point(12, 41); + this.dataGridView.Name = "dataGridView"; + this.dataGridView.RowTemplate.Height = 25; + this.dataGridView.Size = new System.Drawing.Size(776, 397); + this.dataGridView.TabIndex = 1; + // + // component + // + this.component.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; + this.component.HeaderText = "Components"; + this.component.Name = "component"; + // + // sushi + // + this.sushi.HeaderText = "Sushis"; + this.sushi.Name = "sushi"; + // + // count + // + this.count.HeaderText = "Count"; + this.count.Name = "count"; + // + // FormComponentsOnSushi + // + this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(800, 450); + this.Controls.Add(this.dataGridView); + this.Controls.Add(this.ButtonSave); + this.Name = "FormComponentsOnSushi"; + this.Text = "FormComponentsOnSushi"; + this.Load += new System.EventHandler(this.FormComponentsOnSushi_Load); + ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + private Button ButtonSave; + private DataGridView dataGridView; + private DataGridViewTextBoxColumn component; + private DataGridViewTextBoxColumn sushi; + private DataGridViewTextBoxColumn count; + } +} \ No newline at end of file diff --git a/SushiBar/SushiBar/FormSushiOnComponents.cs b/SushiBar/SushiBar/FormSushiOnComponents.cs new file mode 100644 index 0000000..c00e8b3 --- /dev/null +++ b/SushiBar/SushiBar/FormSushiOnComponents.cs @@ -0,0 +1,77 @@ +using Microsoft.Extensions.Logging; +using SushiBarContracts.BindingModels; +using SushiBarContracts.BusinessLogicsContracts; + +namespace SushiBar +{ + public partial class FormSushiOnComponents : Form + { + private readonly ILogger _logger; + private readonly IReportLogic _logic; + + public FormSushiOnComponents(ILogger logger, IReportLogic logic) + { + InitializeComponent(); + _logger = logger; + _logic = logic; + } + + private void ButtonSave_Click(object sender, EventArgs e) + { + using var dialog = new SaveFileDialog + { + Filter = "xlsx|*.xlsx" + }; + if (dialog.ShowDialog() == DialogResult.OK) + { + try + { + _logic.SaveProductComponentToExcelFile(new + ReportBindingModel + { + FileName = dialog.FileName + }); + _logger.LogInformation("Saving list sushi on components"); + + MessageBox.Show("Success", "Result", MessageBoxButtons.OK, MessageBoxIcon.Information); + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка сохранения списка изделий по компонентам"); + + MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + + } + + private void FormComponentsOnSushi_Load(object sender, EventArgs e) + { + try + { + var dict = _logic.GetSushi(); + if (dict != null) + { + dataGridView.Rows.Clear(); + foreach (var elem in dict) + { + dataGridView.Rows.Add(new object[] { elem.SushiName, "", "" }); + foreach (var listElem in elem.Components) + { + dataGridView.Rows.Add(new object[] { "", listElem.Item1, listElem.Item2 }); + } + dataGridView.Rows.Add(new object[] { "Count", "", elem.TotalCount }); + dataGridView.Rows.Add(Array.Empty()); + } + } + _logger.LogInformation("Load list sushi on components"); + } + catch (Exception ex) + { + _logger.LogError(ex, "Error on load list sushi on components"); + + MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + } +} diff --git a/SushiBar/SushiBar/FormSushiOnComponents.resx b/SushiBar/SushiBar/FormSushiOnComponents.resx new file mode 100644 index 0000000..20d81ef --- /dev/null +++ b/SushiBar/SushiBar/FormSushiOnComponents.resx @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + True + + + True + + + True + + \ No newline at end of file diff --git a/SushiBar/SushiBar/Program.cs b/SushiBar/SushiBar/Program.cs index af6a63d..5926f34 100644 --- a/SushiBar/SushiBar/Program.cs +++ b/SushiBar/SushiBar/Program.cs @@ -2,6 +2,8 @@ using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using NLog.Extensions.Logging; using SushiBarBusinessLogic.BusinessLogics; +using SushiBarBusinessLogic.OfficePackage; +using SushiBarBusinessLogic.OfficePackage.Implements; using SushiBarContracts.BusinessLogicsContracts; using SushiBarContracts.StoragesContracts; using SushiBarDatabaseImplement.Implements; @@ -35,6 +37,10 @@ namespace SushiBar services.AddTransient(); services.AddTransient(); services.AddTransient(); + services.AddTransient(); + services.AddTransient(); + services.AddTransient(); + services.AddTransient(); services.AddTransient(); services.AddTransient(); services.AddTransient(); @@ -42,6 +48,8 @@ namespace SushiBar services.AddTransient(); services.AddTransient(); services.AddTransient(); + services.AddTransient(); + services.AddTransient(); } } } \ No newline at end of file diff --git a/SushiBar/SushiBar/Properties/Resources.Designer.cs b/SushiBar/SushiBar/Properties/Resources.Designer.cs new file mode 100644 index 0000000..1a1679c --- /dev/null +++ b/SushiBar/SushiBar/Properties/Resources.Designer.cs @@ -0,0 +1,63 @@ +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +namespace SushiBar.Properties { + using System; + + + /// + /// Класс ресурса со строгой типизацией для поиска локализованных строк и т.д. + /// + // Этот класс создан автоматически классом StronglyTypedResourceBuilder + // с помощью такого средства, как ResGen или Visual Studio. + // Чтобы добавить или удалить член, измените файл .ResX и снова запустите ResGen + // с параметром /str или перестройте свой проект VS. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// + /// Возвращает кэшированный экземпляр ResourceManager, использованный этим классом. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("SushiBar.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Перезаписывает свойство CurrentUICulture текущего потока для всех + /// обращений к ресурсу с помощью этого класса ресурса со строгой типизацией. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + } +} diff --git a/SushiBar/SushiBar/Properties/Resources.resx b/SushiBar/SushiBar/Properties/Resources.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/SushiBar/SushiBar/Properties/Resources.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/SushiBar/SushiBar/Report.rdlc b/SushiBar/SushiBar/Report.rdlc new file mode 100644 index 0000000..5c19f05 --- /dev/null +++ b/SushiBar/SushiBar/Report.rdlc @@ -0,0 +1,588 @@ + + + 0 + + + + System.Data.DataSet + /* Local Connection */ + + bf577a27-98a7-43b2-8beb-1a37d37ce5cd + + + + + + SushiBarContractsViewModel + /* Local Query */ + + + + Count + System.Int32 + + + DateCreate + System.DateTime + + + IceCreamName + System.String + + + Status + System.String + + + Sum + System.Decimal + + + + SushiBarContracts.ViewModels + ReportOrderViewModel + SushiBarContracts.ViewModels.ReportOrderViewModel, IceCreamShopContracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + + + + + + + + true + true + + + + + Orders + + + + + + + Textbox1 + 0.99688cm + 21.51cm + + + 2pt + 2pt + 2pt + 2pt + + + + + + + 5.26521cm + + + 5.26521cm + + + 5.26521cm + + + 2.26188cm + + + 2.26188cm + + + + + 2.22236cm + + + + + true + true + + + + + Id + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Date Create + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Sushi Name + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Status + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Sum + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + 2.22236cm + + + + + true + true + + + + + =Fields!Count.Value + + + 2pt + 2pt + 2pt + 2pt + + + true + + + + + + true + true + + + + + =Fields!DateCreate.Value + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!SushiName.Value + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Status.Value + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + =Fields!Sum.Value + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + + + + + + + After + + + + + + + DataSetOrders + 2.4609cm + 0.60854cm + 4.44472cm + 20.31939cm + 1 + + + + + + true + true + + + + + =Parameters!ReportParameterPeriod.Value + + + + + + + Textbox12 + 1.42557cm + 0.65292cm + 21.51cm + 2 + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + Total + + + 2pt + 2pt + 2pt + 2pt + + + + true + true + + + + + =Sum(Fields!Sum.Value, "DataSetOrders") + + + 2pt + 2pt + 2pt + 2pt + + + + 3.22917in +