From 07b2d0c768ddf7cdbb355eb77a279d49972f82d1 Mon Sep 17 00:00:00 2001 From: alhimek17 Date: Wed, 25 Dec 2024 16:40:34 +0400 Subject: [PATCH] =?UTF-8?q?=D0=9B=D0=B0=D0=B1=D0=BE=D1=80=D0=B0=D1=82?= =?UTF-8?q?=D0=BE=D1=80=D0=BD=D0=B0=D1=8F=20=D1=80=D0=B0=D0=B1=D0=BE=D1=82?= =?UTF-8?q?=D0=B0=20=E2=84=963?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ProjectShoeShop/Entities/Order.cs | 11 + .../ProjectShoeShop/Entities/Supply.cs | 11 + .../ProjectShoeShop/Entities/TempOrderItem.cs | 22 ++ .../Entities/TempSupplyShoes.cs | 23 ++ .../ProjectShoeShop/FormShoesShop.Designer.cs | 32 +- .../ProjectShoeShop/FormShoesShop.cs | 36 ++ .../Forms/FormDirectoryReport.Designer.cs | 86 +++++ .../Forms/FormDirectoryReport.cs | 53 +++ .../Forms/FormDirectoryReport.resx | 120 +++++++ .../Forms/FormOrderDistribution.Designer.cs | 107 ++++++ .../Forms/FormOrderDistribution.cs | 68 ++++ .../Forms/FormOrderDistribution.resx | 120 +++++++ .../Forms/FormShoesReport.Designer.cs | 162 +++++++++ .../ProjectShoeShop/Forms/FormShoesReport.cs | 81 +++++ .../Forms/FormShoesReport.resx | 120 +++++++ .../ProjectShoeShop/Forms/FormSupply.cs | 4 +- .../ProjectShoeShop/ProjectShoeShop.csproj | 2 + .../ProjectShoeShop/Reports/ChartReport.cs | 49 +++ .../ProjectShoeShop/Reports/DocReport.cs | 61 ++++ .../ProjectShoeShop/Reports/ExcelBuilder.cs | 311 ++++++++++++++++++ .../ProjectShoeShop/Reports/PdfBuilder.cs | 76 +++++ .../ProjectShoeShop/Reports/TableReport.cs | 70 ++++ .../ProjectShoeShop/Reports/WordBuilder.cs | 130 ++++++++ .../Implementations/OrderRepository.cs | 7 +- .../Implementations/SupplyRepository.cs | 7 +- 25 files changed, 1759 insertions(+), 10 deletions(-) create mode 100644 ProjectShoeShop/ProjectShoeShop/Entities/TempOrderItem.cs create mode 100644 ProjectShoeShop/ProjectShoeShop/Entities/TempSupplyShoes.cs create mode 100644 ProjectShoeShop/ProjectShoeShop/Forms/FormDirectoryReport.Designer.cs create mode 100644 ProjectShoeShop/ProjectShoeShop/Forms/FormDirectoryReport.cs create mode 100644 ProjectShoeShop/ProjectShoeShop/Forms/FormDirectoryReport.resx create mode 100644 ProjectShoeShop/ProjectShoeShop/Forms/FormOrderDistribution.Designer.cs create mode 100644 ProjectShoeShop/ProjectShoeShop/Forms/FormOrderDistribution.cs create mode 100644 ProjectShoeShop/ProjectShoeShop/Forms/FormOrderDistribution.resx create mode 100644 ProjectShoeShop/ProjectShoeShop/Forms/FormShoesReport.Designer.cs create mode 100644 ProjectShoeShop/ProjectShoeShop/Forms/FormShoesReport.cs create mode 100644 ProjectShoeShop/ProjectShoeShop/Forms/FormShoesReport.resx create mode 100644 ProjectShoeShop/ProjectShoeShop/Reports/ChartReport.cs create mode 100644 ProjectShoeShop/ProjectShoeShop/Reports/DocReport.cs create mode 100644 ProjectShoeShop/ProjectShoeShop/Reports/ExcelBuilder.cs create mode 100644 ProjectShoeShop/ProjectShoeShop/Reports/PdfBuilder.cs create mode 100644 ProjectShoeShop/ProjectShoeShop/Reports/TableReport.cs create mode 100644 ProjectShoeShop/ProjectShoeShop/Reports/WordBuilder.cs diff --git a/ProjectShoeShop/ProjectShoeShop/Entities/Order.cs b/ProjectShoeShop/ProjectShoeShop/Entities/Order.cs index 22052bf..e663f2f 100644 --- a/ProjectShoeShop/ProjectShoeShop/Entities/Order.cs +++ b/ProjectShoeShop/ProjectShoeShop/Entities/Order.cs @@ -26,4 +26,15 @@ public class Order OrderItems = orderItems }; } + + public static Order CreateOperation(TempOrderItem tempOrderItem, IEnumerable orderItems) + { + return new Order + { + Id = tempOrderItem.Id, + ClientId = tempOrderItem.ClientId, + OrderDate = tempOrderItem.OrderDate, + OrderItems = orderItems + }; + } } diff --git a/ProjectShoeShop/ProjectShoeShop/Entities/Supply.cs b/ProjectShoeShop/ProjectShoeShop/Entities/Supply.cs index 047ed6e..94377c5 100644 --- a/ProjectShoeShop/ProjectShoeShop/Entities/Supply.cs +++ b/ProjectShoeShop/ProjectShoeShop/Entities/Supply.cs @@ -27,4 +27,15 @@ public class Supply SupplyShoes = supplyShoes }; } + + public static Supply CreateEntity(TempSupplyShoes tempSupplyShoes, IEnumerable supplyShoes) + { + return new Supply + { + Id = tempSupplyShoes.Id, + DateOfReceipt = tempSupplyShoes.DateOfReceipt, + SupplyType = tempSupplyShoes.SupplyType, + SupplyShoes = supplyShoes + }; + } } diff --git a/ProjectShoeShop/ProjectShoeShop/Entities/TempOrderItem.cs b/ProjectShoeShop/ProjectShoeShop/Entities/TempOrderItem.cs new file mode 100644 index 0000000..50da0ac --- /dev/null +++ b/ProjectShoeShop/ProjectShoeShop/Entities/TempOrderItem.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProjectShoeShop.Entities; + +public class TempOrderItem +{ + public int Id { get; private set; } + + public int ClientId { get; private set; } + + public DateTime OrderDate { get; private set; } + + public int ShoesId { get; set; } + + public int NumberOfPairs { get; set; } + + public int Size { get; set; } +} diff --git a/ProjectShoeShop/ProjectShoeShop/Entities/TempSupplyShoes.cs b/ProjectShoeShop/ProjectShoeShop/Entities/TempSupplyShoes.cs new file mode 100644 index 0000000..16e8bc0 --- /dev/null +++ b/ProjectShoeShop/ProjectShoeShop/Entities/TempSupplyShoes.cs @@ -0,0 +1,23 @@ +using ProjectShoeShop.Entities.Enums; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProjectShoeShop.Entities; + +public class TempSupplyShoes +{ + public int Id { get; private set; } + + public DateTime DateOfReceipt { get; private set; } + + public SupplyType SupplyType { get; private set; } + + public int ShoesId { get; private set; } + + public int Size { get; private set; } + + public int NumberOfPairs { get; private set; } +} diff --git a/ProjectShoeShop/ProjectShoeShop/FormShoesShop.Designer.cs b/ProjectShoeShop/ProjectShoeShop/FormShoesShop.Designer.cs index 3c91162..7583a69 100644 --- a/ProjectShoeShop/ProjectShoeShop/FormShoesShop.Designer.cs +++ b/ProjectShoeShop/ProjectShoeShop/FormShoesShop.Designer.cs @@ -36,6 +36,9 @@ orderToolStripMenuItem = new ToolStripMenuItem(); supplyshoeToolStripMenuItem = new ToolStripMenuItem(); отчетыToolStripMenuItem = new ToolStripMenuItem(); + toolStripMenuItemDocReport = new ToolStripMenuItem(); + toolStripMenuItemShoesReport = new ToolStripMenuItem(); + toolStripMenuItemOrderDistribution = new ToolStripMenuItem(); menuStrip.SuspendLayout(); SuspendLayout(); // @@ -58,14 +61,14 @@ // clientToolStripMenuItem // clientToolStripMenuItem.Name = "clientToolStripMenuItem"; - clientToolStripMenuItem.Size = new Size(180, 22); + clientToolStripMenuItem.Size = new Size(113, 22); clientToolStripMenuItem.Text = "Клиент"; clientToolStripMenuItem.Click += clientToolStripMenuItem_Click; // // shoeToolStripMenuItem // shoeToolStripMenuItem.Name = "shoeToolStripMenuItem"; - shoeToolStripMenuItem.Size = new Size(180, 22); + shoeToolStripMenuItem.Size = new Size(113, 22); shoeToolStripMenuItem.Text = "Обувь"; shoeToolStripMenuItem.Click += shoeToolStripMenuItem_Click; // @@ -92,10 +95,32 @@ // // отчетыToolStripMenuItem // + отчетыToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { toolStripMenuItemDocReport, toolStripMenuItemShoesReport, toolStripMenuItemOrderDistribution }); отчетыToolStripMenuItem.Name = "отчетыToolStripMenuItem"; отчетыToolStripMenuItem.Size = new Size(60, 20); отчетыToolStripMenuItem.Text = "Отчеты"; // + // toolStripMenuItemDocReport + // + toolStripMenuItemDocReport.Name = "toolStripMenuItemDocReport"; + toolStripMenuItemDocReport.Size = new Size(207, 22); + toolStripMenuItemDocReport.Text = "Отчет по справочникам"; + toolStripMenuItemDocReport.Click += toolStripMenuItemDocReport_Click; + // + // toolStripMenuItemShoesReport + // + toolStripMenuItemShoesReport.Name = "toolStripMenuItemShoesReport"; + toolStripMenuItemShoesReport.Size = new Size(207, 22); + toolStripMenuItemShoesReport.Text = "Отчет по товару"; + toolStripMenuItemShoesReport.Click += toolStripMenuItemShoesReport_Click; + // + // toolStripMenuItemOrderDistribution + // + toolStripMenuItemOrderDistribution.Name = "toolStripMenuItemOrderDistribution"; + toolStripMenuItemOrderDistribution.Size = new Size(207, 22); + toolStripMenuItemOrderDistribution.Text = "Отчет по продажам"; + toolStripMenuItemOrderDistribution.Click += toolStripMenuItemOrderDistribution_Click; + // // FormShoesShop // AutoScaleDimensions = new SizeF(7F, 15F); @@ -124,5 +149,8 @@ private ToolStripMenuItem orderToolStripMenuItem; private ToolStripMenuItem отчетыToolStripMenuItem; private ToolStripMenuItem supplyshoeToolStripMenuItem; + private ToolStripMenuItem toolStripMenuItemDocReport; + private ToolStripMenuItem toolStripMenuItemShoesReport; + private ToolStripMenuItem toolStripMenuItemOrderDistribution; } } diff --git a/ProjectShoeShop/ProjectShoeShop/FormShoesShop.cs b/ProjectShoeShop/ProjectShoeShop/FormShoesShop.cs index bd52301..1675648 100644 --- a/ProjectShoeShop/ProjectShoeShop/FormShoesShop.cs +++ b/ProjectShoeShop/ProjectShoeShop/FormShoesShop.cs @@ -72,5 +72,41 @@ namespace ProjectShoeShop MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); } } + + private void toolStripMenuItemDocReport_Click(object sender, EventArgs e) + { + try + { + _container.Resolve().ShowDialog(); + } + catch (Exception ex) + { + MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + + private void toolStripMenuItemShoesReport_Click(object sender, EventArgs e) + { + try + { + _container.Resolve().ShowDialog(); + } + catch (Exception ex) + { + MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + + private void toolStripMenuItemOrderDistribution_Click(object sender, EventArgs e) + { + try + { + _container.Resolve().ShowDialog(); + } + catch (Exception ex) + { + MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } } } diff --git a/ProjectShoeShop/ProjectShoeShop/Forms/FormDirectoryReport.Designer.cs b/ProjectShoeShop/ProjectShoeShop/Forms/FormDirectoryReport.Designer.cs new file mode 100644 index 0000000..87f9500 --- /dev/null +++ b/ProjectShoeShop/ProjectShoeShop/Forms/FormDirectoryReport.Designer.cs @@ -0,0 +1,86 @@ +namespace ProjectShoeShop.Forms +{ + partial class FormDirectoryReport + { + /// + /// 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() + { + checkBoxClients = new CheckBox(); + checkBoxShoes = new CheckBox(); + buttonBuild = new Button(); + SuspendLayout(); + // + // checkBoxClients + // + checkBoxClients.AutoSize = true; + checkBoxClients.Location = new Point(12, 12); + checkBoxClients.Name = "checkBoxClients"; + checkBoxClients.Size = new Size(74, 19); + checkBoxClients.TabIndex = 0; + checkBoxClients.Text = "Клиенты"; + checkBoxClients.UseVisualStyleBackColor = true; + // + // checkBoxShoes + // + checkBoxShoes.AutoSize = true; + checkBoxShoes.Location = new Point(12, 60); + checkBoxShoes.Name = "checkBoxShoes"; + checkBoxShoes.Size = new Size(60, 19); + checkBoxShoes.TabIndex = 1; + checkBoxShoes.Text = "Обувь"; + checkBoxShoes.UseVisualStyleBackColor = true; + // + // buttonBuild + // + buttonBuild.Location = new Point(12, 151); + buttonBuild.Name = "buttonBuild"; + buttonBuild.Size = new Size(172, 23); + buttonBuild.TabIndex = 2; + buttonBuild.Text = "Сформировать"; + buttonBuild.UseVisualStyleBackColor = true; + buttonBuild.Click += buttonBuild_Click; + // + // FormDirectoryReport + // + AutoScaleDimensions = new SizeF(7F, 15F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(196, 195); + Controls.Add(buttonBuild); + Controls.Add(checkBoxShoes); + Controls.Add(checkBoxClients); + Name = "FormDirectoryReport"; + Text = "Отчет по справочникам"; + ResumeLayout(false); + PerformLayout(); + } + + #endregion + + private CheckBox checkBoxClients; + private CheckBox checkBoxShoes; + private Button buttonBuild; + } +} \ No newline at end of file diff --git a/ProjectShoeShop/ProjectShoeShop/Forms/FormDirectoryReport.cs b/ProjectShoeShop/ProjectShoeShop/Forms/FormDirectoryReport.cs new file mode 100644 index 0000000..68650a9 --- /dev/null +++ b/ProjectShoeShop/ProjectShoeShop/Forms/FormDirectoryReport.cs @@ -0,0 +1,53 @@ +using ProjectShoeShop.Reports; +using Unity; + +namespace ProjectShoeShop.Forms +{ + public partial class FormDirectoryReport : Form + { + private readonly IUnityContainer _container; + + public FormDirectoryReport(IUnityContainer container) + { + InitializeComponent(); + _container = container ?? throw new ArgumentNullException(nameof(container)); + } + + private void buttonBuild_Click(object sender, EventArgs e) + { + try + { + if (!checkBoxClients.Checked && !checkBoxShoes.Checked) + { + throw new Exception("Не выбран ни один справочник для выгрузки"); + } + var sfd = new SaveFileDialog() + { + Filter = "Docx Files | *.docx" + }; + if (sfd.ShowDialog() != DialogResult.OK) + { + throw new Exception("Не выбран файла для отчета"); + } + if + (_container.Resolve().CreateDoc(sfd.FileName, checkBoxClients.Checked, checkBoxShoes.Checked)) + { + 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/ProjectShoeShop/ProjectShoeShop/Forms/FormDirectoryReport.resx b/ProjectShoeShop/ProjectShoeShop/Forms/FormDirectoryReport.resx new file mode 100644 index 0000000..af32865 --- /dev/null +++ b/ProjectShoeShop/ProjectShoeShop/Forms/FormDirectoryReport.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/ProjectShoeShop/ProjectShoeShop/Forms/FormOrderDistribution.Designer.cs b/ProjectShoeShop/ProjectShoeShop/Forms/FormOrderDistribution.Designer.cs new file mode 100644 index 0000000..5400355 --- /dev/null +++ b/ProjectShoeShop/ProjectShoeShop/Forms/FormOrderDistribution.Designer.cs @@ -0,0 +1,107 @@ +namespace ProjectShoeShop.Forms +{ + partial class FormOrderDistribution + { + /// + /// 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() + { + buttonFile = new Button(); + buttonBuild = new Button(); + label1 = new Label(); + labelFileName = new Label(); + dateTimePicker = new DateTimePicker(); + SuspendLayout(); + // + // buttonFile + // + buttonFile.Location = new Point(12, 12); + buttonFile.Name = "buttonFile"; + buttonFile.Size = new Size(75, 23); + buttonFile.TabIndex = 0; + buttonFile.Text = "Выбрать"; + buttonFile.UseVisualStyleBackColor = true; + buttonFile.Click += buttonFile_Click; + // + // buttonBuild + // + buttonBuild.Location = new Point(12, 82); + buttonBuild.Name = "buttonBuild"; + buttonBuild.Size = new Size(244, 23); + buttonBuild.TabIndex = 1; + buttonBuild.Text = "Сформировать"; + buttonBuild.UseVisualStyleBackColor = true; + buttonBuild.Click += buttonBuild_Click; + // + // label1 + // + label1.AutoSize = true; + label1.Location = new Point(12, 50); + label1.Name = "label1"; + label1.Size = new Size(35, 15); + label1.TabIndex = 2; + label1.Text = "Дата:"; + // + // labelFileName + // + labelFileName.AutoSize = true; + labelFileName.Location = new Point(93, 16); + labelFileName.Name = "labelFileName"; + labelFileName.Size = new Size(36, 15); + labelFileName.TabIndex = 3; + labelFileName.Text = "Файл"; + // + // dateTimePicker + // + dateTimePicker.Location = new Point(56, 44); + dateTimePicker.Name = "dateTimePicker"; + dateTimePicker.Size = new Size(200, 23); + dateTimePicker.TabIndex = 4; + // + // FormOrderDistribution + // + AutoScaleDimensions = new SizeF(7F, 15F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(268, 117); + Controls.Add(dateTimePicker); + Controls.Add(labelFileName); + Controls.Add(label1); + Controls.Add(buttonBuild); + Controls.Add(buttonFile); + Name = "FormOrderDistribution"; + Text = "Отчет по продажам"; + ResumeLayout(false); + PerformLayout(); + } + + #endregion + + private Button buttonFile; + private Button buttonBuild; + private Label label1; + private Label labelFileName; + private DateTimePicker dateTimePicker; + } +} \ No newline at end of file diff --git a/ProjectShoeShop/ProjectShoeShop/Forms/FormOrderDistribution.cs b/ProjectShoeShop/ProjectShoeShop/Forms/FormOrderDistribution.cs new file mode 100644 index 0000000..fd6e675 --- /dev/null +++ b/ProjectShoeShop/ProjectShoeShop/Forms/FormOrderDistribution.cs @@ -0,0 +1,68 @@ +using ProjectShoeShop.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 ProjectShoeShop.Forms +{ + public partial class FormOrderDistribution : Form + { + private string _fileName = string.Empty; + private readonly IUnityContainer _container; + public FormOrderDistribution(IUnityContainer container) + { + InitializeComponent(); + _container = container ?? throw new ArgumentNullException(nameof(container)); + } + + private void buttonBuild_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); + } + } + + private void buttonFile_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); + } + } + } +} diff --git a/ProjectShoeShop/ProjectShoeShop/Forms/FormOrderDistribution.resx b/ProjectShoeShop/ProjectShoeShop/Forms/FormOrderDistribution.resx new file mode 100644 index 0000000..af32865 --- /dev/null +++ b/ProjectShoeShop/ProjectShoeShop/Forms/FormOrderDistribution.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/ProjectShoeShop/ProjectShoeShop/Forms/FormShoesReport.Designer.cs b/ProjectShoeShop/ProjectShoeShop/Forms/FormShoesReport.Designer.cs new file mode 100644 index 0000000..a18df07 --- /dev/null +++ b/ProjectShoeShop/ProjectShoeShop/Forms/FormShoesReport.Designer.cs @@ -0,0 +1,162 @@ +namespace ProjectShoeShop.Forms +{ + partial class FormShoesReport + { + /// + /// 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() + { + label1 = new Label(); + label2 = new Label(); + label3 = new Label(); + label4 = new Label(); + buttonFile = new Button(); + buttonBuild = new Button(); + comboBoxShoes = new ComboBox(); + dateTimePickerStart = new DateTimePicker(); + dateTimePickerEnd = new DateTimePicker(); + textBoxFilePath = new TextBox(); + SuspendLayout(); + // + // label1 + // + label1.AutoSize = true; + label1.Location = new Point(12, 49); + label1.Name = "label1"; + label1.Size = new Size(44, 15); + label1.TabIndex = 0; + label1.Text = "Обувь:"; + // + // label2 + // + label2.AutoSize = true; + label2.Location = new Point(12, 9); + label2.Name = "label2"; + label2.Size = new Size(90, 15); + label2.TabIndex = 1; + label2.Text = "Путь до файла:"; + // + // label3 + // + label3.AutoSize = true; + label3.Location = new Point(12, 88); + label3.Name = "label3"; + label3.Size = new Size(77, 15); + label3.TabIndex = 2; + label3.Text = "Дата начала:"; + // + // label4 + // + label4.AutoSize = true; + label4.Location = new Point(12, 127); + label4.Name = "label4"; + label4.Size = new Size(71, 15); + label4.TabIndex = 3; + label4.Text = "Дата конца:"; + // + // buttonFile + // + buttonFile.Location = new Point(251, 6); + buttonFile.Name = "buttonFile"; + buttonFile.Size = new Size(29, 23); + buttonFile.TabIndex = 4; + buttonFile.Text = "..."; + buttonFile.UseVisualStyleBackColor = true; + buttonFile.Click += buttonFile_Click; + // + // buttonBuild + // + buttonBuild.Location = new Point(12, 161); + buttonBuild.Name = "buttonBuild"; + buttonBuild.Size = new Size(268, 23); + buttonBuild.TabIndex = 5; + buttonBuild.Text = "Сформировать"; + buttonBuild.UseVisualStyleBackColor = true; + buttonBuild.Click += buttonBuild_Click; + // + // comboBoxShoes + // + comboBoxShoes.FormattingEnabled = true; + comboBoxShoes.Location = new Point(108, 46); + comboBoxShoes.Name = "comboBoxShoes"; + comboBoxShoes.Size = new Size(172, 23); + comboBoxShoes.TabIndex = 6; + // + // dateTimePickerStart + // + dateTimePickerStart.Location = new Point(108, 82); + dateTimePickerStart.Name = "dateTimePickerStart"; + dateTimePickerStart.Size = new Size(172, 23); + dateTimePickerStart.TabIndex = 7; + // + // dateTimePickerEnd + // + dateTimePickerEnd.Location = new Point(108, 121); + dateTimePickerEnd.Name = "dateTimePickerEnd"; + dateTimePickerEnd.Size = new Size(172, 23); + dateTimePickerEnd.TabIndex = 8; + // + // textBoxFilePath + // + textBoxFilePath.Location = new Point(108, 6); + textBoxFilePath.Name = "textBoxFilePath"; + textBoxFilePath.Size = new Size(137, 23); + textBoxFilePath.TabIndex = 9; + // + // FormShoesReport + // + AutoScaleDimensions = new SizeF(7F, 15F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(293, 197); + Controls.Add(textBoxFilePath); + Controls.Add(dateTimePickerEnd); + Controls.Add(dateTimePickerStart); + Controls.Add(comboBoxShoes); + Controls.Add(buttonBuild); + Controls.Add(buttonFile); + Controls.Add(label4); + Controls.Add(label3); + Controls.Add(label2); + Controls.Add(label1); + Name = "FormShoesReport"; + Text = "Отчет по обуви"; + ResumeLayout(false); + PerformLayout(); + } + + #endregion + + private Label label1; + private Label label2; + private Label label3; + private Label label4; + private Button buttonFile; + private Button buttonBuild; + private ComboBox comboBoxShoes; + private DateTimePicker dateTimePickerStart; + private DateTimePicker dateTimePickerEnd; + private TextBox textBoxFilePath; + } +} \ No newline at end of file diff --git a/ProjectShoeShop/ProjectShoeShop/Forms/FormShoesReport.cs b/ProjectShoeShop/ProjectShoeShop/Forms/FormShoesReport.cs new file mode 100644 index 0000000..73cbf6d --- /dev/null +++ b/ProjectShoeShop/ProjectShoeShop/Forms/FormShoesReport.cs @@ -0,0 +1,81 @@ +using ProjectShoeShop.Reports; +using ProjectShoeShop.Repositories; +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 ProjectShoeShop.Forms +{ + public partial class FormShoesReport : Form + { + private readonly IUnityContainer _container; + + public FormShoesReport(IUnityContainer container, IShoesRepository shoesRepository) + { + InitializeComponent(); + + _container = container ?? throw new ArgumentNullException(nameof(container)); + + comboBoxShoes.DataSource = shoesRepository.ReadShoes(); + comboBoxShoes.DisplayMember = "Name"; + comboBoxShoes.ValueMember = "Id"; + } + + private void buttonFile_Click(object sender, EventArgs e) + { + var sfd = new SaveFileDialog() + { + Filter = "Excel Files | *.xlsx" + }; + if (sfd.ShowDialog() != DialogResult.OK) + { + return; + } + textBoxFilePath.Text = sfd.FileName; + } + + private void buttonBuild_Click(object sender, EventArgs e) + { + try + { + if (string.IsNullOrWhiteSpace(textBoxFilePath.Text)) + { + throw new Exception("Отсутствует имя файла для отчета"); + } + if (comboBoxShoes.SelectedIndex < 0) + { + throw new Exception("Не выбрана обувь"); + } + if (dateTimePickerEnd.Value <= dateTimePickerStart.Value) + { + throw new Exception("Дата начала должна быть раньше даты окончания"); + } + if (_container.Resolve().CreateTable(textBoxFilePath.Text, (int)comboBoxShoes.SelectedValue!, dateTimePickerStart.Value, dateTimePickerEnd.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/ProjectShoeShop/ProjectShoeShop/Forms/FormShoesReport.resx b/ProjectShoeShop/ProjectShoeShop/Forms/FormShoesReport.resx new file mode 100644 index 0000000..af32865 --- /dev/null +++ b/ProjectShoeShop/ProjectShoeShop/Forms/FormShoesReport.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/ProjectShoeShop/ProjectShoeShop/Forms/FormSupply.cs b/ProjectShoeShop/ProjectShoeShop/Forms/FormSupply.cs index 6fdf044..0758606 100644 --- a/ProjectShoeShop/ProjectShoeShop/Forms/FormSupply.cs +++ b/ProjectShoeShop/ProjectShoeShop/Forms/FormSupply.cs @@ -59,8 +59,8 @@ namespace ProjectShoeShop.Forms } list.Add(SupplyShoes.CreateElement(0, Convert.ToInt32(row.Cells["ColumnShoe"].Value), - Convert.ToInt32(row.Cells["ColumnNumberOfPairs"].Value), - Convert.ToInt32(row.Cells["ColumnSize"].Value))); + Convert.ToInt32(row.Cells["ColumnSize"].Value), + Convert.ToInt32(row.Cells["ColumnNumberOfPairs"].Value))); } return list; } diff --git a/ProjectShoeShop/ProjectShoeShop/ProjectShoeShop.csproj b/ProjectShoeShop/ProjectShoeShop/ProjectShoeShop.csproj index 740bad0..206e222 100644 --- a/ProjectShoeShop/ProjectShoeShop/ProjectShoeShop.csproj +++ b/ProjectShoeShop/ProjectShoeShop/ProjectShoeShop.csproj @@ -10,11 +10,13 @@ + + diff --git a/ProjectShoeShop/ProjectShoeShop/Reports/ChartReport.cs b/ProjectShoeShop/ProjectShoeShop/Reports/ChartReport.cs new file mode 100644 index 0000000..ad9e9d8 --- /dev/null +++ b/ProjectShoeShop/ProjectShoeShop/Reports/ChartReport.cs @@ -0,0 +1,49 @@ +using Microsoft.Extensions.Logging; +using ProjectShoeShop.Repositories; +using ProjectShoeShop.Repositories.Implementations; + +namespace ProjectShoeShop.Reports; + +internal class ChartReport +{ + private readonly IOrderRepository _orderRepository; + private readonly IShoesRepository _shoesRepository; + private readonly ILogger _logger; + + public ChartReport(IOrderRepository orderRepository, IShoesRepository shoesRepository, ILogger logger) + { + _orderRepository = orderRepository ?? throw new ArgumentNullException(nameof(orderRepository)); + _shoesRepository = shoesRepository ?? throw new ArgumentNullException(nameof(shoesRepository)); + _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) + { + var fuelNames = _shoesRepository.ReadShoes() + .ToDictionary(f => f.Id, f => f.Name); + + return _orderRepository + .ReadOrder() + .Where(x => x.OrderDate.Date == dateTime.Date) + .SelectMany(x => x.OrderItems) + .GroupBy(x => x.ShoesId) + .Select(g => (Caption: fuelNames[g.Key].ToString(), Value: (double)g.Sum(x => x.NumberOfPairs))) + .ToList(); + } +} diff --git a/ProjectShoeShop/ProjectShoeShop/Reports/DocReport.cs b/ProjectShoeShop/ProjectShoeShop/Reports/DocReport.cs new file mode 100644 index 0000000..b8301d2 --- /dev/null +++ b/ProjectShoeShop/ProjectShoeShop/Reports/DocReport.cs @@ -0,0 +1,61 @@ +using Microsoft.Extensions.Logging; +using ProjectShoeShop.Repositories; + +namespace ProjectShoeShop.Reports; + +public class DocReport +{ + private readonly IClientRepository _clientRepository; + private readonly IShoesRepository _shoesRepository; + private readonly ILogger _logger; + + public DocReport(IClientRepository clientRepository, IShoesRepository shoesRepository, ILogger logger) + { + _clientRepository = clientRepository ?? throw new ArgumentNullException(nameof(clientRepository)); + _shoesRepository = shoesRepository ?? throw new ArgumentNullException(nameof(shoesRepository)); + _logger = logger ?? throw new ArgumentNullException(nameof(logger)); + } + + public bool CreateDoc(string filePath, bool includeClients, bool includeShoes) + { + try + { + var builder = new WordBuilder(filePath).AddHeader("Документ со справочниками"); + if (includeClients) + { + builder.AddParagraph("Клиенты").AddTable([2400], GetClients()); + } + if (includeShoes) + { + builder.AddParagraph("Обувь").AddTable([2400, 2400, 2400], GetShoes()); + } + builder.Build(); + return true; + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка при формировании документа"); + return false; + } + } + + private List GetClients() + { + return [ + ["Имя"], + .. _clientRepository + .ReadClient() + .Select(x => new string[] { x.Name }), + ]; + } + + private List GetShoes() + { + return [ + ["Название", "Цена", "Тип"], + .. _shoesRepository + .ReadShoes() + .Select(x => new string[] { x.Name, x.Price.ToString(), x.ShoesType.ToString() }), + ]; + } +} diff --git a/ProjectShoeShop/ProjectShoeShop/Reports/ExcelBuilder.cs b/ProjectShoeShop/ProjectShoeShop/Reports/ExcelBuilder.cs new file mode 100644 index 0000000..78e7af7 --- /dev/null +++ b/ProjectShoeShop/ProjectShoeShop/Reports/ExcelBuilder.cs @@ -0,0 +1,311 @@ +using DocumentFormat.OpenXml.Packaging; +using DocumentFormat.OpenXml.Spreadsheet; +using DocumentFormat.OpenXml; + +namespace ProjectShoeShop.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.BoldTextWithoutBorder); + 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.BoldTextWithBorder); + } + _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) + } + }); + 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) + }, + Bold = new Bold() { Val = true } + }); + 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() + }); + borders.Append(new Border + { + LeftBorder = new LeftBorder() { Style = BorderStyleValues.Thin }, + RightBorder = new RightBorder() { Style = BorderStyleValues.Thin }, + TopBorder = new TopBorder() { Style = BorderStyleValues.Thin }, + BottomBorder = new BottomBorder() { Style = BorderStyleValues.Thin }, + DiagonalBorder = new DiagonalBorder() + }); + workbookStylesPart.Stylesheet.Append(borders); + + // Default cell format and a date cell format + 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 + } + }); + cellFormats.Append(new CellFormat + { + NumberFormatId = 0, + FormatId = 0, + FontId = 0, + BorderId = 1, + FillId = 0, + Alignment = new Alignment() + { + Horizontal = HorizontalAlignmentValues.Right, + Vertical = VerticalAlignmentValues.Center, + WrapText = true + } + }); + cellFormats.Append(new CellFormat + { + NumberFormatId = 0, + FormatId = 0, + FontId = 1, + BorderId = 0, + FillId = 0, + Alignment = new Alignment() + { + Horizontal = HorizontalAlignmentValues.Center, + Vertical = VerticalAlignmentValues.Center, + WrapText = true + } + }); + cellFormats.Append(new CellFormat + { + NumberFormatId = 0, + FormatId = 0, + FontId = 1, + BorderId = 1, + FillId = 0, + Alignment = new Alignment() + { + Horizontal = HorizontalAlignmentValues.Center, + Vertical = VerticalAlignmentValues.Center, + WrapText = true + } + }); + workbookStylesPart.Stylesheet.Append(cellFormats); + } + + private enum StyleIndex + { + SimpleTextWithoutBorder = 0, + SimpleTextWithBorder = 1, + BoldTextWithoutBorder = 2, + BoldTextWithBorder = 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/ProjectShoeShop/ProjectShoeShop/Reports/PdfBuilder.cs b/ProjectShoeShop/ProjectShoeShop/Reports/PdfBuilder.cs new file mode 100644 index 0000000..3a43c2d --- /dev/null +++ b/ProjectShoeShop/ProjectShoeShop/Reports/PdfBuilder.cs @@ -0,0 +1,76 @@ +using MigraDoc.DocumentObjectModel; +using MigraDoc.DocumentObjectModel.Shapes.Charts; +using MigraDoc.Rendering; +using System.Text; + +namespace ProjectShoeShop.Reports; + +internal 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() + { + Encoding.RegisterProvider(CodePagesEncodingProvider.Instance); + 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/ProjectShoeShop/ProjectShoeShop/Reports/TableReport.cs b/ProjectShoeShop/ProjectShoeShop/Reports/TableReport.cs new file mode 100644 index 0000000..b535d22 --- /dev/null +++ b/ProjectShoeShop/ProjectShoeShop/Reports/TableReport.cs @@ -0,0 +1,70 @@ +using Microsoft.Extensions.Logging; +using ProjectShoeShop.Repositories; + +namespace ProjectShoeShop.Reports; + +internal class TableReport +{ + private readonly IOrderRepository _orderRepository; + private readonly ISupplyRepository _supplyRepository; + private readonly ILogger _logger; + internal static readonly string[] item = ["Дата", "Количество пришло", "Количество ушло"]; + + public TableReport(IOrderRepository orderRepository, ISupplyRepository supplyRepository, ILogger logger) + { + _orderRepository = orderRepository ?? throw new ArgumentNullException(nameof(orderRepository)); + _supplyRepository = supplyRepository ?? throw new ArgumentNullException(nameof(supplyRepository)); + _logger = logger ?? throw new ArgumentNullException(nameof(logger)); + } + + public bool CreateTable(string filePath, int shoesId, DateTime startDate, DateTime endDate) + { + try + { + new ExcelBuilder(filePath) + .AddHeader("Сводка по движению товара", 0, 3) + .AddParagraph("за период", 0) + .AddTable([10, 15, 15], GetData(shoesId, startDate, endDate)) + .Build(); + return true; + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка при формировании документа"); + return false; + } + } + + private List GetData(int shoesId, DateTime startDate, DateTime endDate) + { + var data = _orderRepository + .ReadOrder() + .Where(x => x.OrderDate >= startDate && x.OrderDate <= endDate && x.OrderItems.Any(y => y.ShoesId == shoesId)) + .Select(x => new { Date = x.OrderDate.Date, CountIn = (int?)null, CountOut = x.OrderItems.FirstOrDefault(y => y.ShoesId == shoesId)?.NumberOfPairs }) + .Union( + _supplyRepository + .ReadSupply() + .Where(x => x.DateOfReceipt >= startDate && x.DateOfReceipt <= endDate && x.SupplyShoes.Any(y => y.ShoesId == shoesId)) + .Select(x => new { Date = x.DateOfReceipt.Date, CountIn = x.SupplyShoes.FirstOrDefault(y => y.ShoesId == shoesId)?.NumberOfPairs, CountOut = (int?)null }) + ) + .OrderBy(x => x.Date); + + var groupedData = data + .GroupBy(x => x.Date) + .Select(g => new + { + Date = g.Key, + TotalIn = g.Sum(x => x.CountIn), + TotalOut = g.Sum(x => x.CountOut) + }) + .OrderBy(x => x.Date); + return + new List() { item } + .Union(groupedData + .Select(x => new string[] { x.Date.ToString("dd.MM.yyyy"), x.TotalIn.ToString()!, x.TotalOut.ToString()! })) + .Union( + new[] { new string[] { "Всего", groupedData.Sum(x => x.TotalIn).ToString()!, groupedData.Sum(x => x.TotalOut).ToString()! } } + ) + .ToList(); + } +} diff --git a/ProjectShoeShop/ProjectShoeShop/Reports/WordBuilder.cs b/ProjectShoeShop/ProjectShoeShop/Reports/WordBuilder.cs new file mode 100644 index 0000000..38b51c8 --- /dev/null +++ b/ProjectShoeShop/ProjectShoeShop/Reports/WordBuilder.cs @@ -0,0 +1,130 @@ +using DocumentFormat.OpenXml.Drawing.Charts; +using DocumentFormat.OpenXml; +using DocumentFormat.OpenXml.Wordprocessing; +using DocumentFormat.OpenXml.Packaging; + +namespace ProjectShoeShop.Reports; + +public class WordBuilder +{ + private readonly string _filePath; + private readonly Document _document; + private readonly Body _body; + + public WordBuilder(string filePath) + { + if (string.IsNullOrWhiteSpace(filePath)) + { + throw new ArgumentNullException(nameof(filePath)); + } + if (File.Exists(filePath)) + { + File.Delete(filePath); + } + _filePath = filePath; + _document = new Document(); + _body = _document.AppendChild(new Body()); + } + + public WordBuilder AddHeader(string header) + { + var paragraph = _body.AppendChild(new Paragraph()); + var run = paragraph.AppendChild(new Run()); + var runProperties = run.AppendChild(new RunProperties()); + runProperties.AppendChild(new Bold()); + run.AppendChild(new Text(header)); + return this; + } + + public WordBuilder AddParagraph(string text) + { + var paragraph = _body.AppendChild(new Paragraph()); + var run = paragraph.AppendChild(new Run()); + run.AppendChild(new Text(text)); + return this; + } + + public WordBuilder AddTable(int[] widths, List data) + { + if (widths == null || widths.Length == 0) + { + throw new ArgumentNullException(nameof(widths)); + } + if (data == null || data.Count == 0) + { + throw new ArgumentNullException(nameof(data)); + } + if (data.Any(x => x.Length != widths.Length)) + { + throw new InvalidOperationException("widths.Length != data.Length"); + } + var table = new Table(); + table.AppendChild(new TableProperties( + new TableBorders( + new TopBorder() + { + Val = new + EnumValue(BorderValues.Single), + Size = 12 + }, + new BottomBorder() + { + Val = new + EnumValue(BorderValues.Single), + Size = 12 + }, + new LeftBorder() + { + Val = new + EnumValue(BorderValues.Single), + Size = 12 + }, + new RightBorder() + { + Val = new + EnumValue(BorderValues.Single), + Size = 12 + }, + new InsideHorizontalBorder() + { + Val = new + EnumValue(BorderValues.Single), + Size = 12 + }, + new InsideVerticalBorder() + { + Val = new + EnumValue(BorderValues.Single), + Size = 12 + } + ) + )); + + var tr = new TableRow(); + for (var j = 0; j < widths.Length; ++j) + { + tr.Append(new TableCell( + new TableCellProperties(new TableCellWidth() + { + Width = + widths[j].ToString() + }), + new Paragraph(new Run(new RunProperties(new Bold()), new + Text(data.First()[j]))))); + } + table.Append(tr); + + table.Append(data.Skip(1).Select(x => + new TableRow(x.Select(y => new TableCell(new Paragraph(new Run(new Text(y)))))))); + _body.Append(table); + return this; + } + + public void Build() + { + using var wordDocument = WordprocessingDocument.Create(_filePath, +WordprocessingDocumentType.Document); + var mainPart = wordDocument.AddMainDocumentPart(); + mainPart.Document = _document; + } +} diff --git a/ProjectShoeShop/ProjectShoeShop/Repositories/Implementations/OrderRepository.cs b/ProjectShoeShop/ProjectShoeShop/Repositories/Implementations/OrderRepository.cs index 313bc7b..69c9407 100644 --- a/ProjectShoeShop/ProjectShoeShop/Repositories/Implementations/OrderRepository.cs +++ b/ProjectShoeShop/ProjectShoeShop/Repositories/Implementations/OrderRepository.cs @@ -62,11 +62,12 @@ public class OrderRepository : IOrderRepository try { using var connection = new NpgsqlConnection(_connectionString.ConnectionString); - var querySelect = "SELECT * FROM \"Order\""; - var contractorFuels = connection.Query(querySelect); + var querySelect = @"SELECT ord.*, ordi.ShoesId, ordi.NumberOfPairs, ordi.Size FROM ""Order"" ord + INNER JOIN OrderItem ordi on ord.Id = ordi.OrderId"; + var contractorFuels = connection.Query(querySelect); _logger.LogDebug("Полученные объекты: {json}", JsonConvert.SerializeObject(contractorFuels)); - return contractorFuels; + return contractorFuels.GroupBy(x => x.Id, y => y, (key, value) => Order.CreateOperation(value.First(), value.Select(z => OrderItem.CreateElement(0, z.ShoesId, z.NumberOfPairs, z.Size)))).ToList(); } catch (Exception ex) { diff --git a/ProjectShoeShop/ProjectShoeShop/Repositories/Implementations/SupplyRepository.cs b/ProjectShoeShop/ProjectShoeShop/Repositories/Implementations/SupplyRepository.cs index b227c6c..cc3452f 100644 --- a/ProjectShoeShop/ProjectShoeShop/Repositories/Implementations/SupplyRepository.cs +++ b/ProjectShoeShop/ProjectShoeShop/Repositories/Implementations/SupplyRepository.cs @@ -62,11 +62,12 @@ public class SupplyRepository : ISupplyRepository try { using var connection = new NpgsqlConnection(_connectionString.ConnectionString); - var querySelect = "SELECT * FROM Supply"; - var supplies = connection.Query(querySelect); + var querySelect = @"SELECT sup.*, sups.ShoesId, sups.Size, sups.NumberOfPairs FROM Supply sup + INNER JOIN SupplyShoes sups on sup.Id = sups.SupplyId"; + var supplies = connection.Query(querySelect); _logger.LogDebug("Полученные объекты: {json}", JsonConvert.SerializeObject(supplies)); - return supplies; + return supplies.GroupBy(x => x.Id, y => y, (key, value) => Supply.CreateEntity(value.First(), value.Select(z => SupplyShoes.CreateElement(0, z.ShoesId, z.Size, z.NumberOfPairs)))).ToList(); } catch (Exception ex) {