From 0af049e329e166c1026462ee166098bf63fe64f8 Mon Sep 17 00:00:00 2001 From: cyxaruk Date: Tue, 17 Dec 2024 11:23:06 +0400 Subject: [PATCH] =?UTF-8?q?=D0=B5=D1=89=D0=B5=20=D0=BD=D0=B5=20=D0=B3?= =?UTF-8?q?=D0=BE=D1=82=D0=BE=D0=B2=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../FormPeopleTransportation.Designer.cs | 12 +- .../FormPeopleTransportation.cs | 13 + .../Forms/FormBusCheckReport.Designer.cs | 107 ++++++ .../Forms/FormBusCheckReport.cs | 70 ++++ .../Forms/FormBusCheckReport.resx | 120 +++++++ .../ProjectPeopleTransportation.csproj | 1 + .../Reports/ChartReport.cs | 47 +++ .../Reports/ExcelBuilder.cs | 316 ++++++++++++++++++ .../Reports/PdfBuilder.cs | 74 ++++ .../Reports/TableReport.cs | 66 ++++ 10 files changed, 825 insertions(+), 1 deletion(-) create mode 100644 ProjectPeopleTransportation/ProjectPeopleTransportation/Forms/FormBusCheckReport.Designer.cs create mode 100644 ProjectPeopleTransportation/ProjectPeopleTransportation/Forms/FormBusCheckReport.cs create mode 100644 ProjectPeopleTransportation/ProjectPeopleTransportation/Forms/FormBusCheckReport.resx create mode 100644 ProjectPeopleTransportation/ProjectPeopleTransportation/Reports/ChartReport.cs create mode 100644 ProjectPeopleTransportation/ProjectPeopleTransportation/Reports/ExcelBuilder.cs create mode 100644 ProjectPeopleTransportation/ProjectPeopleTransportation/Reports/PdfBuilder.cs create mode 100644 ProjectPeopleTransportation/ProjectPeopleTransportation/Reports/TableReport.cs diff --git a/ProjectPeopleTransportation/ProjectPeopleTransportation/FormPeopleTransportation.Designer.cs b/ProjectPeopleTransportation/ProjectPeopleTransportation/FormPeopleTransportation.Designer.cs index ca69e68..eb29827 100644 --- a/ProjectPeopleTransportation/ProjectPeopleTransportation/FormPeopleTransportation.Designer.cs +++ b/ProjectPeopleTransportation/ProjectPeopleTransportation/FormPeopleTransportation.Designer.cs @@ -38,6 +38,7 @@ началоСменыToolStripMenuItem = new ToolStripMenuItem(); отчетыToolStripMenuItem = new ToolStripMenuItem(); DirectoryReportToolStripMenuItem = new ToolStripMenuItem(); + BusCheckToolStripMenuItem = new ToolStripMenuItem(); menuStrip.SuspendLayout(); SuspendLayout(); // @@ -101,7 +102,7 @@ // // отчетыToolStripMenuItem // - отчетыToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { DirectoryReportToolStripMenuItem }); + отчетыToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { DirectoryReportToolStripMenuItem, BusCheckToolStripMenuItem }); отчетыToolStripMenuItem.Name = "отчетыToolStripMenuItem"; отчетыToolStripMenuItem.Size = new Size(60, 20); отчетыToolStripMenuItem.Text = "Отчеты"; @@ -114,6 +115,14 @@ DirectoryReportToolStripMenuItem.Text = "Документ со справочниками"; DirectoryReportToolStripMenuItem.Click += DirectoryReportToolStripMenuItem_Click; // + // BusCheckToolStripMenuItem + // + BusCheckToolStripMenuItem.Name = "BusCheckToolStripMenuItem"; + BusCheckToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.P; + BusCheckToolStripMenuItem.Size = new Size(280, 22); + BusCheckToolStripMenuItem.Text = "Починка автобусов"; + BusCheckToolStripMenuItem.Click += BusCheckToolStripMenuItem_Click_1; + // // FormPeopleTransportation // AutoScaleDimensions = new SizeF(7F, 15F); @@ -144,5 +153,6 @@ private ToolStripMenuItem раздачаМаршрутовToolStripMenuItem; private ToolStripMenuItem началоСменыToolStripMenuItem; private ToolStripMenuItem DirectoryReportToolStripMenuItem; + private ToolStripMenuItem BusCheckToolStripMenuItem; } } diff --git a/ProjectPeopleTransportation/ProjectPeopleTransportation/FormPeopleTransportation.cs b/ProjectPeopleTransportation/ProjectPeopleTransportation/FormPeopleTransportation.cs index 1a34350..67a62ee 100644 --- a/ProjectPeopleTransportation/ProjectPeopleTransportation/FormPeopleTransportation.cs +++ b/ProjectPeopleTransportation/ProjectPeopleTransportation/FormPeopleTransportation.cs @@ -85,5 +85,18 @@ namespace ProjectPeopleTransportation } } + + + private void BusCheckToolStripMenuItem_Click_1(object sender, EventArgs e) + { + try + { + _container.Resolve().ShowDialog(); + } + catch (Exception ex) + { + MessageBox.Show(ex.Message, " ", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } } } diff --git a/ProjectPeopleTransportation/ProjectPeopleTransportation/Forms/FormBusCheckReport.Designer.cs b/ProjectPeopleTransportation/ProjectPeopleTransportation/Forms/FormBusCheckReport.Designer.cs new file mode 100644 index 0000000..fc06611 --- /dev/null +++ b/ProjectPeopleTransportation/ProjectPeopleTransportation/Forms/FormBusCheckReport.Designer.cs @@ -0,0 +1,107 @@ +namespace ProjectPeopleTransportation.Forms +{ + partial class FormBusCheckReport + { + /// + /// 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() + { + buttonSelectFileName = new Button(); + buttonCreate = new Button(); + dateTimePicker = new DateTimePicker(); + label1 = new Label(); + labelFileName = new Label(); + SuspendLayout(); + // + // buttonSelectFileName + // + buttonSelectFileName.Location = new Point(37, 42); + buttonSelectFileName.Name = "buttonSelectFileName"; + buttonSelectFileName.Size = new Size(75, 23); + buttonSelectFileName.TabIndex = 0; + buttonSelectFileName.Text = "Выбрать"; + buttonSelectFileName.UseVisualStyleBackColor = true; + buttonSelectFileName.Click += ButtonSelectFileName_Click; + // + // buttonCreate + // + buttonCreate.Location = new Point(92, 143); + buttonCreate.Name = "buttonCreate"; + buttonCreate.Size = new Size(124, 25); + buttonCreate.TabIndex = 1; + buttonCreate.Text = "Сформировать"; + buttonCreate.UseVisualStyleBackColor = true; + buttonCreate.Click += ButtonCreate_Click; + // + // dateTimePicker + // + dateTimePicker.Location = new Point(92, 86); + dateTimePicker.Name = "dateTimePicker"; + dateTimePicker.Size = new Size(213, 23); + dateTimePicker.TabIndex = 2; + // + // label1 + // + label1.AutoSize = true; + label1.Location = new Point(37, 86); + label1.Name = "label1"; + label1.Size = new Size(32, 15); + label1.TabIndex = 3; + label1.Text = "Дата"; + // + // labelFileName + // + labelFileName.AutoSize = true; + labelFileName.Location = new Point(150, 50); + labelFileName.Name = "labelFileName"; + labelFileName.Size = new Size(36, 15); + labelFileName.TabIndex = 4; + labelFileName.Text = "Файл"; + // + // FormBusCheckReport + // + AutoScaleDimensions = new SizeF(7F, 15F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(343, 218); + Controls.Add(labelFileName); + Controls.Add(label1); + Controls.Add(dateTimePicker); + Controls.Add(buttonCreate); + Controls.Add(buttonSelectFileName); + Name = "FormBusCheckReport"; + Text = "Распределение товара"; + ResumeLayout(false); + PerformLayout(); + } + + #endregion + + private Button buttonSelectFileName; + private Button buttonCreate; + private DateTimePicker dateTimePicker; + private Label label1; + private Label labelFileName; + } +} diff --git a/ProjectPeopleTransportation/ProjectPeopleTransportation/Forms/FormBusCheckReport.cs b/ProjectPeopleTransportation/ProjectPeopleTransportation/Forms/FormBusCheckReport.cs new file mode 100644 index 0000000..d51bdae --- /dev/null +++ b/ProjectPeopleTransportation/ProjectPeopleTransportation/Forms/FormBusCheckReport.cs @@ -0,0 +1,70 @@ +using ProjectPeopleTransportation.Reports; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using Unity; + +namespace ProjectPeopleTransportation.Forms +{ + public partial class FormBusCheckReport : Form + { + private string _fileName = string.Empty; + + private readonly IUnityContainer _container; + + public FormBusCheckReport(IUnityContainer container) + { + InitializeComponent(); + _container = container ?? throw new ArgumentNullException(nameof(container)); + } + + private void ButtonSelectFileName_Click(object sender, EventArgs e) + { + var sfd = new SaveFileDialog() + { + Filter = "Pdf Files | *.pdf" + }; + if (sfd.ShowDialog() == DialogResult.OK) + { + _fileName = sfd.FileName; + labelFileName.Text = Path.GetFileName(_fileName); + } + } + + private void ButtonCreate_Click(object sender, EventArgs e) + { + try + { + if (string.IsNullOrWhiteSpace(_fileName)) + { + throw new Exception("Отсутствует имя файла для отчета"); + } + if + (_container.Resolve().CreateChart(_fileName, dateTimePicker.Value)) + { + MessageBox.Show("Документ сформирован", + "Формирование документа", + MessageBoxButtons.OK, + MessageBoxIcon.Information); + } + else + { + MessageBox.Show("Возникли ошибки при формировании документа.Подробности в логах", + "Формирование документа", + MessageBoxButtons.OK, MessageBoxIcon.Information); + } + } + catch (Exception ex) + { + MessageBox.Show(ex.Message, "Ошибка при создании очета", + MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + } +} diff --git a/ProjectPeopleTransportation/ProjectPeopleTransportation/Forms/FormBusCheckReport.resx b/ProjectPeopleTransportation/ProjectPeopleTransportation/Forms/FormBusCheckReport.resx new file mode 100644 index 0000000..af32865 --- /dev/null +++ b/ProjectPeopleTransportation/ProjectPeopleTransportation/Forms/FormBusCheckReport.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/ProjectPeopleTransportation/ProjectPeopleTransportation/ProjectPeopleTransportation.csproj b/ProjectPeopleTransportation/ProjectPeopleTransportation/ProjectPeopleTransportation.csproj index 62b2a29..f9436c8 100644 --- a/ProjectPeopleTransportation/ProjectPeopleTransportation/ProjectPeopleTransportation.csproj +++ b/ProjectPeopleTransportation/ProjectPeopleTransportation/ProjectPeopleTransportation.csproj @@ -16,6 +16,7 @@ + diff --git a/ProjectPeopleTransportation/ProjectPeopleTransportation/Reports/ChartReport.cs b/ProjectPeopleTransportation/ProjectPeopleTransportation/Reports/ChartReport.cs new file mode 100644 index 0000000..fcbcf45 --- /dev/null +++ b/ProjectPeopleTransportation/ProjectPeopleTransportation/Reports/ChartReport.cs @@ -0,0 +1,47 @@ +using Microsoft.Extensions.Logging; +using ProjectPeopleTransportation.Repositories; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProjectPeopleTransportation.Reports; + +internal class ChartReport +{ + private readonly IBusCheckRepository _busCheckRepository; + private readonly ILogger _logger; + public ChartReport(IBusCheckRepository busCheckRepository, ILogger logger) + { + _busCheckRepository = busCheckRepository ?? + throw new + ArgumentNullException(nameof(busCheckRepository)); + _logger = logger ?? + throw new ArgumentNullException(nameof(logger)); + } + public bool CreateChart(string filePath, DateTime dateTime) + { + try + { + new PdfBuilder(filePath) + .AddHeader("Починка автобуса") + .AddPieChart("Починенный автобус", GetData(dateTime)) + .Build(); + return true; + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка при формировании документа"); + return false; + } + } + private List<(string Caption, double Value)> GetData(DateTime dateTime) + { + return _busCheckRepository + .ReadBusCheck() + .Where(x => x.Date.Date == dateTime.Date) + .GroupBy(x => x.Bus_ID, (key, group) => new { Id = key, Count = group.Sum(x => x.Price) }) + .Select(x => (x.Id.ToString(), (double)x.Count)).ToList(); + } +} diff --git a/ProjectPeopleTransportation/ProjectPeopleTransportation/Reports/ExcelBuilder.cs b/ProjectPeopleTransportation/ProjectPeopleTransportation/Reports/ExcelBuilder.cs new file mode 100644 index 0000000..0adb6ac --- /dev/null +++ b/ProjectPeopleTransportation/ProjectPeopleTransportation/Reports/ExcelBuilder.cs @@ -0,0 +1,316 @@ +using DocumentFormat.OpenXml; +using DocumentFormat.OpenXml.Packaging; +using DocumentFormat.OpenXml.Spreadsheet; +using Color = DocumentFormat.OpenXml.Spreadsheet.Color; + + +namespace ProjectPeopleTransportation.Reports; + +internal class ExcelBuilder +{ + private readonly string _filePath; + private readonly SheetData _sheetData; + private readonly MergeCells _mergeCells; + private readonly Columns _columns; + private uint _rowIndex = 0; + + public ExcelBuilder(string filePath) + { + if (string.IsNullOrWhiteSpace(filePath)) + { + throw new ArgumentNullException(nameof(filePath)); + } + if (File.Exists(filePath)) + { + File.Delete(filePath); + } + _filePath = filePath; + _sheetData = new SheetData(); + _mergeCells = new MergeCells(); + _columns = new Columns(); + _rowIndex = 1; + } + + public ExcelBuilder AddHeader(string header, int startIndex, int count) + { + CreateCell(startIndex, _rowIndex, header, + StyleIndex.SimpleTextWithoutBorder); + for (int i = startIndex + 1; i < startIndex + count; ++i) + { + CreateCell(i, _rowIndex, "", StyleIndex.SimpleTextWithoutBorder); + } + _mergeCells.Append(new MergeCell() + { + Reference = new StringValue($"{GetExcelColumnName(startIndex)}{_rowIndex}:{GetExcelColumnName(startIndex + count - 1)}{_rowIndex}") + }); + _rowIndex++; + return this; + } + public ExcelBuilder AddParagraph(string text, int columnIndex) + { + CreateCell(columnIndex, _rowIndex++, text, StyleIndex.SimpleTextWithoutBorder); + return this; + } + public ExcelBuilder AddTable(int[] columnsWidths, List data) + { + if (columnsWidths == null || columnsWidths.Length == 0) + { + throw new ArgumentNullException(nameof(columnsWidths)); + } + if (data == null || data.Count == 0) + { + throw new ArgumentNullException(nameof(data)); + } + if (data.Any(x => x.Length != columnsWidths.Length)) + { + throw new InvalidOperationException("widths.Length != data.Length"); + } + uint counter = 1; + int coef = 2; + _columns.Append(columnsWidths.Select(x => new Column + { + Min = counter, + Max = counter++, + Width = x * coef, + CustomWidth = true + })); + for (var j = 0; j < data.First().Length; ++j) + { + CreateCell(j, _rowIndex, data.First()[j], StyleIndex.SimpleTextWithoutBorder); + } + _rowIndex++; + for (var i = 1; i < data.Count - 1; ++i) + { + for (var j = 0; j < data[i].Length; ++j) + { + CreateCell(j, _rowIndex, data[i][j], StyleIndex.SimpleTextWithBorder); + } + _rowIndex++; + } + for (var j = 0; j < data.Last().Length; ++j) + { + CreateCell(j, _rowIndex, data.Last()[j], StyleIndex.BoldTextWithBorder); + } + _rowIndex++; + return this; + } + + public void Build() + { + using var spreadsheetDocument = SpreadsheetDocument.Create(_filePath, SpreadsheetDocumentType.Workbook); + var workbookpart = spreadsheetDocument.AddWorkbookPart(); + + GenerateStyle(workbookpart); + + workbookpart.Workbook = new Workbook(); + var worksheetPart = workbookpart.AddNewPart(); + + worksheetPart.Worksheet = new Worksheet(); + if (_columns.HasChildren) + { + worksheetPart.Worksheet.Append(_columns); + } + + worksheetPart.Worksheet.Append(_sheetData); + var sheets = spreadsheetDocument.WorkbookPart!.Workbook.AppendChild(new Sheets()); + var sheet = new Sheet() + { + Id = + spreadsheetDocument.WorkbookPart.GetIdOfPart(worksheetPart), + SheetId = 1, + Name = "Лист 1" + }; + sheets.Append(sheet); + if (_mergeCells.HasChildren) + { + worksheetPart.Worksheet.InsertAfter(_mergeCells, + worksheetPart.Worksheet.Elements().First()); + } + } + private static void GenerateStyle(WorkbookPart workbookPart) + { + var workbookStylesPart = workbookPart.AddNewPart(); + workbookStylesPart.Stylesheet = new Stylesheet(); + var fonts = new Fonts() + { + Count = 2, + KnownFonts = BooleanValue.FromBoolean(true) + }; + + fonts.Append(new DocumentFormat.OpenXml.Spreadsheet.Font + { + FontSize = new FontSize() { Val = 11 }, + FontName = new FontName() { Val = "Calibri" }, + FontFamilyNumbering = new FontFamilyNumbering() { Val = 2 }, + FontScheme = new FontScheme() + { + Val = new + EnumValue(FontSchemeValues.Minor) + } + }); + // TODO добавить шрифт с жирным + fonts.Append(new DocumentFormat.OpenXml.Spreadsheet.Font + { + FontSize = new FontSize() { Val = 11 }, + FontName = new FontName() { Val = "Calibri" }, + Bold = new Bold(), + FontFamilyNumbering = new FontFamilyNumbering() { Val = 2 }, + FontScheme = new FontScheme() + { + Val = new + EnumValue(FontSchemeValues.Minor) + } + }); + + workbookStylesPart.Stylesheet.Append(fonts); + // Default Fill + var fills = new Fills() { Count = 1 }; + fills.Append(new Fill + { + PatternFill = new PatternFill() + { + PatternType = new + EnumValue(PatternValues.None) + } + }); + workbookStylesPart.Stylesheet.Append(fills); + // Default Border + var borders = new Borders() { Count = 2 }; + borders.Append(new Border + { + LeftBorder = new LeftBorder(), + RightBorder = new RightBorder(), + TopBorder = new TopBorder(), + BottomBorder = new BottomBorder(), + DiagonalBorder = new DiagonalBorder() + }); + // TODO добавить настройку с границами + borders.Append(new Border + { + LeftBorder = new LeftBorder() { Style = BorderStyleValues.Thin, Color = new Color() { Auto = true } }, + RightBorder = new RightBorder() { Style = BorderStyleValues.Thin, Color = new Color() { Auto = true } }, + TopBorder = new TopBorder() { Style = BorderStyleValues.Thin, Color = new Color() { Auto = true } }, + BottomBorder = new BottomBorder() { Style = BorderStyleValues.Thin, Color = new Color() { Auto = true } }, + DiagonalBorder = new DiagonalBorder() + }); + + workbookStylesPart.Stylesheet.Append(borders); + + var cellFormats = new CellFormats() { Count = 4 }; + cellFormats.Append(new CellFormat + { + NumberFormatId = 0, + FormatId = 0, + FontId = 0, + BorderId = 0, + FillId = 0, + Alignment = new Alignment() + { + Horizontal = HorizontalAlignmentValues.Left, + Vertical = VerticalAlignmentValues.Center, + WrapText = true + } + }); + // TODO дополнить форматы + cellFormats.Append(new CellFormat + { + NumberFormatId = 1, + FormatId = 0, + FontId = 1, + BorderId = 1, + FillId = 0, + Alignment = new Alignment() + { + Horizontal = HorizontalAlignmentValues.Left, + Vertical = VerticalAlignmentValues.Center, + WrapText = true + } + }); + cellFormats.Append(new CellFormat + { + NumberFormatId = 1, + FormatId = 0, + FontId = 1, + BorderId = 0, + FillId = 0, + Alignment = new Alignment() + { + Horizontal = HorizontalAlignmentValues.Left, + Vertical = VerticalAlignmentValues.Center, + WrapText = true + } + }); + cellFormats.Append(new CellFormat + { + NumberFormatId = 1, + FormatId = 0, + FontId = 0, + BorderId = 1, + FillId = 0, + Alignment = new Alignment() + { + Horizontal = HorizontalAlignmentValues.Left, + Vertical = VerticalAlignmentValues.Center, + WrapText = true + } + }); + + workbookStylesPart.Stylesheet.Append(cellFormats); + } + private enum StyleIndex + { + SimpleTextWithoutBorder = 0, + BoldTextWithBorder = 1, + BoldTextWithoutBorder = 2, + SimpleTextWithBorder = 3, + } + private void CreateCell(int columnIndex, uint rowIndex, string text, + StyleIndex styleIndex) + { + var columnName = GetExcelColumnName(columnIndex); + var cellReference = columnName + rowIndex; + var row = _sheetData.Elements().FirstOrDefault(r => r.RowIndex! == rowIndex); + if (row == null) + { + row = new Row() { RowIndex = rowIndex }; + _sheetData.Append(row); + } + var newCell = row.Elements().FirstOrDefault(c => c.CellReference != null && c.CellReference.Value == columnName + rowIndex); + if (newCell == null) + { + Cell? refCell = null; + foreach (Cell cell in row.Elements()) + { + if (cell.CellReference?.Value != null && cell.CellReference.Value.Length == cellReference.Length) + { + if (string.Compare(cell.CellReference.Value, + cellReference, true) > 0) + { + refCell = cell; + break; + } + } + } + newCell = new Cell() { CellReference = cellReference }; + row.InsertBefore(newCell, refCell); + } + newCell.CellValue = new CellValue(text); + newCell.DataType = CellValues.String; + newCell.StyleIndex = (uint)styleIndex; + } + private static string GetExcelColumnName(int columnNumber) + { + columnNumber += 1; + int dividend = columnNumber; + string columnName = string.Empty; + int modulo; + while (dividend > 0) + { + modulo = (dividend - 1) % 26; + columnName = Convert.ToChar(65 + modulo).ToString() + columnName; + dividend = (dividend - modulo) / 26; + } + return columnName; + } + +} diff --git a/ProjectPeopleTransportation/ProjectPeopleTransportation/Reports/PdfBuilder.cs b/ProjectPeopleTransportation/ProjectPeopleTransportation/Reports/PdfBuilder.cs new file mode 100644 index 0000000..91a2315 --- /dev/null +++ b/ProjectPeopleTransportation/ProjectPeopleTransportation/Reports/PdfBuilder.cs @@ -0,0 +1,74 @@ +using MigraDoc.DocumentObjectModel; +using MigraDoc.DocumentObjectModel.Shapes.Charts; +using MigraDoc.Rendering; + +namespace ProjectPeopleTransportation.Reports; + +public class PdfBuilder +{ + private readonly string _filePath; + + private readonly Document _document; + public PdfBuilder(string filePath) + { + if (string.IsNullOrWhiteSpace(filePath)) + { + throw new ArgumentNullException(nameof(filePath)); + } + if (File.Exists(filePath)) + { + File.Delete(filePath); + } + _filePath = filePath; + _document = new Document(); + DefineStyles(); + } + + public PdfBuilder AddHeader(string header) + { + _document.AddSection().AddParagraph(header, "NormalBold"); + return this; + } + + public PdfBuilder AddPieChart(string title, List<(string Caption, double + Value)> data) + { + if (data == null || data.Count == 0) + { + return this; + } + var chart = new Chart(ChartType.Pie2D); + var series = chart.SeriesCollection.AddSeries(); + series.Add(data.Select(x => x.Value).ToArray()); + var xseries = chart.XValues.AddXSeries(); + xseries.Add(data.Select(x => x.Caption).ToArray()); + chart.DataLabel.Type = DataLabelType.Percent; + chart.DataLabel.Position = DataLabelPosition.OutsideEnd; + chart.Width = Unit.FromCentimeter(16); + chart.Height = Unit.FromCentimeter(12); + chart.TopArea.AddParagraph(title); + chart.XAxis.MajorTickMark = TickMarkType.Outside; + chart.YAxis.MajorTickMark = TickMarkType.Outside; + chart.YAxis.HasMajorGridlines = true; + chart.PlotArea.LineFormat.Width = 1; + chart.PlotArea.LineFormat.Visible = true; + chart.TopArea.AddLegend(); + _document.LastSection.Add(chart); + return this; + } + public void Build() + { + var renderer = new PdfDocumentRenderer(true) + { + Document = _document + }; + renderer.RenderDocument(); + renderer.PdfDocument.Save(_filePath); + } + private void DefineStyles() + { + var headerStyle = _document.Styles.AddStyle("NormalBold", "Normal"); + headerStyle.Font.Bold = true; + headerStyle.Font.Size = 14; + } +} diff --git a/ProjectPeopleTransportation/ProjectPeopleTransportation/Reports/TableReport.cs b/ProjectPeopleTransportation/ProjectPeopleTransportation/Reports/TableReport.cs new file mode 100644 index 0000000..ebf7d74 --- /dev/null +++ b/ProjectPeopleTransportation/ProjectPeopleTransportation/Reports/TableReport.cs @@ -0,0 +1,66 @@ +using Microsoft.Extensions.Logging; +using ProjectPeopleTransportation.Repositories; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProjectPeopleTransportation.Reports; + +internal class TableReport +{ + private readonly IStartingShiftRepository _startingShiftRepository; + private readonly IBusCheckRepository _busCheckRepository; + private readonly ILogger _logger; + + internal static readonly string[] item = ["Автобус", "Дата", "Общая цена"]; + public TableReport(IStartingShiftRepository startingShiftRepository, IBusCheckRepository busCheckRepository, + ILogger logger) + { + _startingShiftRepository = startingShiftRepository ?? + throw new ArgumentNullException(nameof(_startingShiftRepository)); + _busCheckRepository = busCheckRepository ?? + throw new ArgumentNullException(nameof(_busCheckRepository)); + _logger = logger ?? throw new ArgumentNullException(nameof(logger)); + } + + //public bool CreateTable(string filePath, int busID, DateTime startDate, DateTime endDate) + //{ + // try + // { + // new ExcelBuilder(filePath) + // .AddHeader("Сводка по передаче автобусов на починку", 0, 4) + // .AddParagraph("за период", 0) + // .AddTable([10, 10, 15, 15], GetData(busID, startDate, endDate)) + // .Build(); + // return true; + // } + // catch (Exception ex) + // { + // _logger.LogError(ex, "Ошибка при формировании документа"); + // MessageBox.Show(ex.ToString()); + // return false; + // } + //} + //private List GetData(int busID, DateTime startDate, DateTime endDate) + //{ + // var data = _busCheckRepository + // .ReadBusCheck() + // .Where(x => x.Date >= startDate && x.Date <= endDate && x.Price.Any(y => y.Price == price)) + // .Select(x => new { x.Products.First(y => y.ProductID == productID).ProductID, Date = x.DateInvoice, CountIn = (int?)null, CountOut = (int?)x.Products.FirstOrDefault(y => y.ProductID == productID)?.Count }) + // .Union( + // _productMovementRepository + // .ReadProductMovements() + // .Where(x => x.Date >= startDate && x.Date <= endDate && x.ProductID == productID && x.MovementType == Movement.Reseipt) + // .Select(x => new { x.ProductID, x.Date, CountIn = (int?)x.Count, CountOut = (int?)null })) + // .OrderBy(x => x.Date); + // return + // new List() { item } + // .Union( + // data + // .Select(x => new string[] { x.ProductID.ToString(), x.Date.ToString(), x.CountIn?.ToString() ?? string.Empty, x.CountOut?.ToString() ?? string.Empty })) + // .Union([["Всего", "", data.Sum(x => x.CountIn ?? 0).ToString(), data.Sum(x => x.CountOut ?? 0).ToString()]]) + // .ToList(); + //} +}