From e1b010458ea8d5884ad44da34bc7a1f909baa354 Mon Sep 17 00:00:00 2001 From: SVETLANA_8 Date: Thu, 5 Dec 2024 14:45:20 +0300 Subject: [PATCH] =?UTF-8?q?3=20=D0=BB=D0=B0=D0=B1=D0=BE=D0=B0=D1=82=D0=BE?= =?UTF-8?q?=D1=80=D0=BD=D0=B0=D1=8F=20=D1=80=D0=B0=D0=B1=D0=BE=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ProjectAtelier/Entities/TempOrder.cs | 14 + ProjectAtelier/FormAtelier.Designer.cs | 32 ++ ProjectAtelier/FormAtelier.cs | 36 +- .../Forms/FormDirectoryReport.Designer.cs | 99 ++++++ ProjectAtelier/Forms/FormDirectoryReport.cs | 61 ++++ ProjectAtelier/Forms/FormDirectoryReport.resx | 120 +++++++ ...RepleneshmentDistibutionReport.Designer.cs | 107 ++++++ ...mMaterialRepleneshmentDistibutionReport.cs | 59 ++++ ...aterialRepleneshmentDistibutionReport.resx | 120 +++++++ .../Forms/FormMaterialReport.Designer.cs | 162 +++++++++ ProjectAtelier/Forms/FormMaterialReport.cs | 80 +++++ ProjectAtelier/Forms/FormMaterialReport.resx | 120 +++++++ ProjectAtelier/Program.cs | 3 +- ProjectAtelier/ProjectAtelier.csproj | 5 +- ProjectAtelier/Reports/ChartReport.cs | 42 +++ ProjectAtelier/Reports/DocReport.cs | 83 +++++ ProjectAtelier/Reports/ExcelBuilder.cs | 318 ++++++++++++++++++ ProjectAtelier/Reports/PdfBuilder.cs | 77 +++++ ProjectAtelier/Reports/TableReport.cs | 69 ++++ ProjectAtelier/Reports/WordBuilder.cs | 98 ++++++ .../Repositories/IOrderMaterialsRepository.cs | 13 + .../OrderMaterialsRepository.cs | 35 ++ 22 files changed, 1750 insertions(+), 3 deletions(-) create mode 100644 ProjectAtelier/Entities/TempOrder.cs create mode 100644 ProjectAtelier/Forms/FormDirectoryReport.Designer.cs create mode 100644 ProjectAtelier/Forms/FormDirectoryReport.cs create mode 100644 ProjectAtelier/Forms/FormDirectoryReport.resx create mode 100644 ProjectAtelier/Forms/FormMaterialRepleneshmentDistibutionReport.Designer.cs create mode 100644 ProjectAtelier/Forms/FormMaterialRepleneshmentDistibutionReport.cs create mode 100644 ProjectAtelier/Forms/FormMaterialRepleneshmentDistibutionReport.resx create mode 100644 ProjectAtelier/Forms/FormMaterialReport.Designer.cs create mode 100644 ProjectAtelier/Forms/FormMaterialReport.cs create mode 100644 ProjectAtelier/Forms/FormMaterialReport.resx create mode 100644 ProjectAtelier/Reports/ChartReport.cs create mode 100644 ProjectAtelier/Reports/DocReport.cs create mode 100644 ProjectAtelier/Reports/ExcelBuilder.cs create mode 100644 ProjectAtelier/Reports/PdfBuilder.cs create mode 100644 ProjectAtelier/Reports/TableReport.cs create mode 100644 ProjectAtelier/Reports/WordBuilder.cs create mode 100644 ProjectAtelier/Repositories/IOrderMaterialsRepository.cs create mode 100644 ProjectAtelier/Repositories/Implementations/OrderMaterialsRepository.cs diff --git a/ProjectAtelier/Entities/TempOrder.cs b/ProjectAtelier/Entities/TempOrder.cs new file mode 100644 index 0000000..7f6c8b8 --- /dev/null +++ b/ProjectAtelier/Entities/TempOrder.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProjectAtelier.Entities; + + +public class TempOrder +{ + public DateTime DataOrder { get; private set; } + public int Count { get; private set; } +} \ No newline at end of file diff --git a/ProjectAtelier/FormAtelier.Designer.cs b/ProjectAtelier/FormAtelier.Designer.cs index 2dfbf08..29bcf37 100644 --- a/ProjectAtelier/FormAtelier.Designer.cs +++ b/ProjectAtelier/FormAtelier.Designer.cs @@ -37,6 +37,9 @@ MaterialConsumptionToolStripMenuItem = new ToolStripMenuItem(); OrderToolStripMenuItem = new ToolStripMenuItem(); отчетыToolStripMenuItem = new ToolStripMenuItem(); + directoryReportToolStripMenuItem = new ToolStripMenuItem(); + MaterialReportsToolStripMenuItem = new ToolStripMenuItem(); + distributionMaterialReplenishmentToolStripMenuItem = new ToolStripMenuItem(); menuStrip.SuspendLayout(); SuspendLayout(); // @@ -101,10 +104,36 @@ // // отчетыToolStripMenuItem // + отчетыToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { directoryReportToolStripMenuItem, MaterialReportsToolStripMenuItem, distributionMaterialReplenishmentToolStripMenuItem }); отчетыToolStripMenuItem.Name = "отчетыToolStripMenuItem"; + отчетыToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.E; отчетыToolStripMenuItem.Size = new Size(73, 24); отчетыToolStripMenuItem.Text = "Отчеты"; // + // directoryReportToolStripMenuItem + // + directoryReportToolStripMenuItem.Name = "directoryReportToolStripMenuItem"; + directoryReportToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.W; + directoryReportToolStripMenuItem.Size = new Size(428, 26); + directoryReportToolStripMenuItem.Text = "Документ со справочниками"; + directoryReportToolStripMenuItem.Click += directoryReportToolStripMenuItem_Click; + // + // MaterialReportsToolStripMenuItem + // + MaterialReportsToolStripMenuItem.Name = "MaterialReportsToolStripMenuItem"; + MaterialReportsToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.E; + MaterialReportsToolStripMenuItem.Size = new Size(428, 26); + MaterialReportsToolStripMenuItem.Text = "Движение материалов"; + MaterialReportsToolStripMenuItem.Click += MaterialReportsToolStripMenuItem_Click; + // + // distributionMaterialReplenishmentToolStripMenuItem + // + distributionMaterialReplenishmentToolStripMenuItem.Name = "distributionMaterialReplenishmentToolStripMenuItem"; + distributionMaterialReplenishmentToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.P; + distributionMaterialReplenishmentToolStripMenuItem.Size = new Size(428, 26); + distributionMaterialReplenishmentToolStripMenuItem.Text = "Распределение пополнения материалов"; + distributionMaterialReplenishmentToolStripMenuItem.Click += distributionMaterialReplenishmentToolStripMenuItem_Click; + // // FormAtelier // AutoScaleDimensions = new SizeF(8F, 20F); @@ -134,5 +163,8 @@ private ToolStripMenuItem MaterialConsumptionToolStripMenuItem; private ToolStripMenuItem OrderToolStripMenuItem; private ToolStripMenuItem отчетыToolStripMenuItem; + private ToolStripMenuItem directoryReportToolStripMenuItem; + private ToolStripMenuItem MaterialReportsToolStripMenuItem; + private ToolStripMenuItem distributionMaterialReplenishmentToolStripMenuItem; } } diff --git a/ProjectAtelier/FormAtelier.cs b/ProjectAtelier/FormAtelier.cs index 15ac99c..389395c 100644 --- a/ProjectAtelier/FormAtelier.cs +++ b/ProjectAtelier/FormAtelier.cs @@ -69,7 +69,41 @@ namespace ProjectAtelier } } - + private void directoryReportToolStripMenuItem_Click(object sender, EventArgs e) + { + try + { + _container.Resolve().ShowDialog(); + } + catch (Exception ex) + { + MessageBox.Show(ex.Message, " ", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + + private void MaterialReportsToolStripMenuItem_Click(object sender, EventArgs e) + { + try + { + _container.Resolve().ShowDialog(); + } + catch (Exception ex) + { + MessageBox.Show(ex.Message, " ", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + + private void distributionMaterialReplenishmentToolStripMenuItem_Click(object sender, EventArgs e) + { + try + { + _container.Resolve().ShowDialog(); + } + catch (Exception ex) + { + MessageBox.Show(ex.Message, " ", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } } } diff --git a/ProjectAtelier/Forms/FormDirectoryReport.Designer.cs b/ProjectAtelier/Forms/FormDirectoryReport.Designer.cs new file mode 100644 index 0000000..b35efc9 --- /dev/null +++ b/ProjectAtelier/Forms/FormDirectoryReport.Designer.cs @@ -0,0 +1,99 @@ +namespace ProjectAtelier.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() + { + checkBoxProducts = new CheckBox(); + checkBoxMaterials = new CheckBox(); + checkBoxClients = new CheckBox(); + buttonBuild = new Button(); + SuspendLayout(); + // + // checkBoxProducts + // + checkBoxProducts.AutoSize = true; + checkBoxProducts.Location = new Point(29, 48); + checkBoxProducts.Name = "checkBoxProducts"; + checkBoxProducts.Size = new Size(90, 24); + checkBoxProducts.TabIndex = 0; + checkBoxProducts.Text = "Изделия"; + checkBoxProducts.UseVisualStyleBackColor = true; + // + // checkBoxMaterials + // + checkBoxMaterials.AutoSize = true; + checkBoxMaterials.Location = new Point(149, 48); + checkBoxMaterials.Name = "checkBoxMaterials"; + checkBoxMaterials.Size = new Size(111, 24); + checkBoxMaterials.TabIndex = 1; + checkBoxMaterials.Text = "Материалы"; + checkBoxMaterials.UseVisualStyleBackColor = true; + // + // checkBoxClients + // + checkBoxClients.AutoSize = true; + checkBoxClients.Location = new Point(305, 48); + checkBoxClients.Name = "checkBoxClients"; + checkBoxClients.Size = new Size(91, 24); + checkBoxClients.TabIndex = 2; + checkBoxClients.Text = "Клиенты"; + checkBoxClients.UseVisualStyleBackColor = true; + // + // buttonBuild + // + buttonBuild.Location = new Point(109, 134); + buttonBuild.Name = "buttonBuild"; + buttonBuild.Size = new Size(191, 63); + buttonBuild.TabIndex = 3; + buttonBuild.Text = "СФОРМИРОВАТЬ"; + buttonBuild.UseVisualStyleBackColor = true; + buttonBuild.Click += buttonBuild_Click; + // + // FormDirectoryReport + // + AutoScaleDimensions = new SizeF(8F, 20F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(432, 245); + Controls.Add(buttonBuild); + Controls.Add(checkBoxClients); + Controls.Add(checkBoxMaterials); + Controls.Add(checkBoxProducts); + Name = "FormDirectoryReport"; + Text = "Выгрузка справочников"; + ResumeLayout(false); + PerformLayout(); + } + + #endregion + + private CheckBox checkBoxProducts; + private CheckBox checkBoxMaterials; + private CheckBox checkBoxClients; + private Button buttonBuild; + } +} \ No newline at end of file diff --git a/ProjectAtelier/Forms/FormDirectoryReport.cs b/ProjectAtelier/Forms/FormDirectoryReport.cs new file mode 100644 index 0000000..c62428e --- /dev/null +++ b/ProjectAtelier/Forms/FormDirectoryReport.cs @@ -0,0 +1,61 @@ +using ProjectAtelier.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 ProjectAtelier.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 (!checkBoxProducts.Checked && !checkBoxMaterials.Checked && !checkBoxClients.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, checkBoxProducts.Checked, checkBoxMaterials.Checked, checkBoxClients.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/ProjectAtelier/Forms/FormDirectoryReport.resx b/ProjectAtelier/Forms/FormDirectoryReport.resx new file mode 100644 index 0000000..8b2ff64 --- /dev/null +++ b/ProjectAtelier/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/ProjectAtelier/Forms/FormMaterialRepleneshmentDistibutionReport.Designer.cs b/ProjectAtelier/Forms/FormMaterialRepleneshmentDistibutionReport.Designer.cs new file mode 100644 index 0000000..9010bdb --- /dev/null +++ b/ProjectAtelier/Forms/FormMaterialRepleneshmentDistibutionReport.Designer.cs @@ -0,0 +1,107 @@ +namespace ProjectAtelier.Forms +{ + partial class FormMaterialRepleneshmentDistibutionReport + { + /// + /// 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() + { + dateTimePicker = new DateTimePicker(); + buttonSelectFileName = new Button(); + buttonCreate = new Button(); + labelFileName = new Label(); + labelDate = new Label(); + SuspendLayout(); + // + // dateTimePicker + // + dateTimePicker.Location = new Point(136, 109); + dateTimePicker.Name = "dateTimePicker"; + dateTimePicker.Size = new Size(250, 27); + dateTimePicker.TabIndex = 0; + // + // buttonSelectFileName + // + buttonSelectFileName.Location = new Point(31, 37); + buttonSelectFileName.Name = "buttonSelectFileName"; + buttonSelectFileName.Size = new Size(94, 29); + buttonSelectFileName.TabIndex = 1; + buttonSelectFileName.Text = "Выбрать"; + buttonSelectFileName.UseVisualStyleBackColor = true; + buttonSelectFileName.Click += buttonSelectFileName_Click; + // + // buttonCreate + // + buttonCreate.Location = new Point(31, 194); + buttonCreate.Name = "buttonCreate"; + buttonCreate.Size = new Size(339, 29); + buttonCreate.TabIndex = 2; + buttonCreate.Text = "СФОРМИРОВАТЬ"; + buttonCreate.UseVisualStyleBackColor = true; + buttonCreate.Click += buttonCreate_Click; + // + // labelFileName + // + labelFileName.AutoSize = true; + labelFileName.Location = new Point(176, 46); + labelFileName.Name = "labelFileName"; + labelFileName.Size = new Size(45, 20); + labelFileName.TabIndex = 3; + labelFileName.Text = "Файл"; + // + // labelDate + // + labelDate.AutoSize = true; + labelDate.Location = new Point(40, 114); + labelDate.Name = "labelDate"; + labelDate.Size = new Size(41, 20); + labelDate.TabIndex = 4; + labelDate.Text = "Дата"; + // + // FormMaterialRepleneshmentDistibutionReport + // + AutoScaleDimensions = new SizeF(8F, 20F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(515, 295); + Controls.Add(labelDate); + Controls.Add(labelFileName); + Controls.Add(buttonCreate); + Controls.Add(buttonSelectFileName); + Controls.Add(dateTimePicker); + Name = "FormMaterialRepleneshmentDistibutionReport"; + Text = "FormMaterialRepleneshmentDistibutionReport"; + ResumeLayout(false); + PerformLayout(); + } + + #endregion + + private DateTimePicker dateTimePicker; + private Button buttonSelectFileName; + private Button buttonCreate; + private Label labelFileName; + private Label labelDate; + } +} \ No newline at end of file diff --git a/ProjectAtelier/Forms/FormMaterialRepleneshmentDistibutionReport.cs b/ProjectAtelier/Forms/FormMaterialRepleneshmentDistibutionReport.cs new file mode 100644 index 0000000..6b5949f --- /dev/null +++ b/ProjectAtelier/Forms/FormMaterialRepleneshmentDistibutionReport.cs @@ -0,0 +1,59 @@ +using ProjectAtelier.Reports; + +using Unity; + +namespace ProjectAtelier.Forms +{ + public partial class FormMaterialRepleneshmentDistibutionReport : Form + { + private string _fileName = string.Empty; + private readonly IUnityContainer _container; + + public FormMaterialRepleneshmentDistibutionReport(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/ProjectAtelier/Forms/FormMaterialRepleneshmentDistibutionReport.resx b/ProjectAtelier/Forms/FormMaterialRepleneshmentDistibutionReport.resx new file mode 100644 index 0000000..8b2ff64 --- /dev/null +++ b/ProjectAtelier/Forms/FormMaterialRepleneshmentDistibutionReport.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/ProjectAtelier/Forms/FormMaterialReport.Designer.cs b/ProjectAtelier/Forms/FormMaterialReport.Designer.cs new file mode 100644 index 0000000..755d84c --- /dev/null +++ b/ProjectAtelier/Forms/FormMaterialReport.Designer.cs @@ -0,0 +1,162 @@ +namespace ProjectAtelier.Forms +{ + partial class FormMaterialReport + { + /// + /// 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() + { + labelFilePath = new Label(); + labelMaterial = new Label(); + labelDateStart = new Label(); + labelDateEnd = new Label(); + dateTimePickerStart = new DateTimePicker(); + dateTimePickerEnd = new DateTimePicker(); + comboBoxMaterial = new ComboBox(); + textBoxFilePath = new TextBox(); + buttonSelectFilePath = new Button(); + buttonMakeReport = new Button(); + SuspendLayout(); + // + // labelFilePath + // + labelFilePath.AutoSize = true; + labelFilePath.Location = new Point(40, 32); + labelFilePath.Name = "labelFilePath"; + labelFilePath.Size = new Size(109, 20); + labelFilePath.TabIndex = 0; + labelFilePath.Text = "Путь до файла"; + // + // labelMaterial + // + labelMaterial.AutoSize = true; + labelMaterial.Location = new Point(40, 86); + labelMaterial.Name = "labelMaterial"; + labelMaterial.Size = new Size(78, 20); + labelMaterial.TabIndex = 1; + labelMaterial.Text = "Материал"; + // + // labelDateStart + // + labelDateStart.AutoSize = true; + labelDateStart.Location = new Point(40, 151); + labelDateStart.Name = "labelDateStart"; + labelDateStart.Size = new Size(94, 20); + labelDateStart.TabIndex = 2; + labelDateStart.Text = "Дата начала"; + // + // labelDateEnd + // + labelDateEnd.AutoSize = true; + labelDateEnd.Location = new Point(40, 221); + labelDateEnd.Name = "labelDateEnd"; + labelDateEnd.Size = new Size(87, 20); + labelDateEnd.TabIndex = 3; + labelDateEnd.Text = "Дата конца"; + // + // dateTimePickerStart + // + dateTimePickerStart.Location = new Point(174, 144); + dateTimePickerStart.Name = "dateTimePickerStart"; + dateTimePickerStart.Size = new Size(192, 27); + dateTimePickerStart.TabIndex = 4; + // + // dateTimePickerEnd + // + dateTimePickerEnd.Location = new Point(174, 216); + dateTimePickerEnd.Name = "dateTimePickerEnd"; + dateTimePickerEnd.Size = new Size(192, 27); + dateTimePickerEnd.TabIndex = 5; + // + // comboBoxMaterial + // + comboBoxMaterial.FormattingEnabled = true; + comboBoxMaterial.Location = new Point(174, 78); + comboBoxMaterial.Name = "comboBoxMaterial"; + comboBoxMaterial.Size = new Size(192, 28); + comboBoxMaterial.TabIndex = 6; + // + // textBoxFilePath + // + textBoxFilePath.Location = new Point(174, 25); + textBoxFilePath.Name = "textBoxFilePath"; + textBoxFilePath.Size = new Size(125, 27); + textBoxFilePath.TabIndex = 7; + // + // buttonSelectFilePath + // + buttonSelectFilePath.Location = new Point(319, 23); + buttonSelectFilePath.Name = "buttonSelectFilePath"; + buttonSelectFilePath.Size = new Size(47, 29); + buttonSelectFilePath.TabIndex = 8; + buttonSelectFilePath.Text = "..."; + buttonSelectFilePath.UseVisualStyleBackColor = true; + buttonSelectFilePath.Click += buttonSelectFilePath_Click; + // + // buttonMakeReport + // + buttonMakeReport.Location = new Point(75, 297); + buttonMakeReport.Name = "buttonMakeReport"; + buttonMakeReport.Size = new Size(235, 37); + buttonMakeReport.TabIndex = 9; + buttonMakeReport.Text = "СФОРМИРОВАТЬ"; + buttonMakeReport.UseVisualStyleBackColor = true; + buttonMakeReport.Click += buttonMakeReport_Click; + // + // FormMaterialReport + // + AutoScaleDimensions = new SizeF(8F, 20F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(425, 356); + Controls.Add(buttonMakeReport); + Controls.Add(buttonSelectFilePath); + Controls.Add(textBoxFilePath); + Controls.Add(comboBoxMaterial); + Controls.Add(dateTimePickerEnd); + Controls.Add(dateTimePickerStart); + Controls.Add(labelDateEnd); + Controls.Add(labelDateStart); + Controls.Add(labelMaterial); + Controls.Add(labelFilePath); + Name = "FormMaterialReport"; + Text = "FormMaterialReport"; + ResumeLayout(false); + PerformLayout(); + } + + #endregion + + private Label labelFilePath; + private Label labelMaterial; + private Label labelDateStart; + private Label labelDateEnd; + private DateTimePicker dateTimePickerStart; + private DateTimePicker dateTimePickerEnd; + private ComboBox comboBoxMaterial; + private TextBox textBoxFilePath; + private Button buttonSelectFilePath; + private Button buttonMakeReport; + } +} \ No newline at end of file diff --git a/ProjectAtelier/Forms/FormMaterialReport.cs b/ProjectAtelier/Forms/FormMaterialReport.cs new file mode 100644 index 0000000..9edbf74 --- /dev/null +++ b/ProjectAtelier/Forms/FormMaterialReport.cs @@ -0,0 +1,80 @@ +using ProjectAtelier.Reports; +using ProjectAtelier.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 ProjectAtelier.Forms +{ + public partial class FormMaterialReport : Form + { + private readonly IUnityContainer _container; + + public FormMaterialReport(IUnityContainer container, IMaterialRepository materialRepository) + { + InitializeComponent(); + _container = container; + + comboBoxMaterial.DataSource = materialRepository.ReadMaterials(); + comboBoxMaterial.DisplayMember = "Name"; + comboBoxMaterial.ValueMember = "Id"; + } + + private void buttonSelectFilePath_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 buttonMakeReport_Click(object sender, EventArgs e) + { + try + { + if (string.IsNullOrWhiteSpace(textBoxFilePath.Text)) + { + throw new Exception("Отсутствует имя файла для отчета"); + } + if (comboBoxMaterial.SelectedIndex < 0) + { + throw new Exception("Не выбран корм"); + } + if (dateTimePickerEnd.Value <= dateTimePickerStart.Value) + { + throw new Exception("Дата начала должна быть раньше даты окончания"); + } + if (_container.Resolve().CreateTable(textBoxFilePath.Text, (int)comboBoxMaterial.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/ProjectAtelier/Forms/FormMaterialReport.resx b/ProjectAtelier/Forms/FormMaterialReport.resx new file mode 100644 index 0000000..8b2ff64 --- /dev/null +++ b/ProjectAtelier/Forms/FormMaterialReport.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/ProjectAtelier/Program.cs b/ProjectAtelier/Program.cs index d597934..415b922 100644 --- a/ProjectAtelier/Program.cs +++ b/ProjectAtelier/Program.cs @@ -34,7 +34,8 @@ namespace ProjectAtelier container.RegisterType(); container.RegisterType(); container.RegisterType(); - + container.RegisterType(); + container.RegisterType(); return container; } diff --git a/ProjectAtelier/ProjectAtelier.csproj b/ProjectAtelier/ProjectAtelier.csproj index 113ee2f..ca555fa 100644 --- a/ProjectAtelier/ProjectAtelier.csproj +++ b/ProjectAtelier/ProjectAtelier.csproj @@ -4,21 +4,24 @@ WinExe net8.0-windows enable - true + True enable + + + diff --git a/ProjectAtelier/Reports/ChartReport.cs b/ProjectAtelier/Reports/ChartReport.cs new file mode 100644 index 0000000..db0c5cb --- /dev/null +++ b/ProjectAtelier/Reports/ChartReport.cs @@ -0,0 +1,42 @@ +using Microsoft.Extensions.Logging; +using ProjectAtelier.REPOSITORY; + +namespace ProjectAtelier.Reports; + +class ChartReport +{ + private readonly IMaterialReplenishmentRepository _materialReplenishmentRepository; + private readonly ILogger _logger; + + public ChartReport(IMaterialReplenishmentRepository materialReplenishmentRepository, ILogger logger) + { + _materialReplenishmentRepository = materialReplenishmentRepository ?? throw new ArgumentNullException(nameof(materialReplenishmentRepository)); + _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 _materialReplenishmentRepository + .ReadMaterialsSpent() + .Where(x => x.DataTime.Date == dateTime.Date) + .GroupBy(x => x.IDMaterial, (key, group) => new { Id = key, Count = group.Sum(x => x.Count) }) + .Select(x => (x.Id.ToString(), (double)x.Count)) + .ToList(); + } +} diff --git a/ProjectAtelier/Reports/DocReport.cs b/ProjectAtelier/Reports/DocReport.cs new file mode 100644 index 0000000..b7a75bb --- /dev/null +++ b/ProjectAtelier/Reports/DocReport.cs @@ -0,0 +1,83 @@ +using Microsoft.Extensions.Logging; +using ProjectAtelier.Repositories; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProjectAtelier.Reports; + +internal class DocReport +{ + private readonly IProductRepository _productRepository; + private readonly IMaterialRepository _materialRepository; + private readonly IClientRepository _clientRepository; + + private readonly ILogger _logger; + + + public DocReport(IProductRepository productRepository, IMaterialRepository materialRepository, IClientRepository clientRepository, ILogger logger) + { + _productRepository = productRepository ?? throw new ArgumentNullException(nameof(productRepository)); + _materialRepository = materialRepository ?? throw new ArgumentNullException(nameof(materialRepository)); + _clientRepository= clientRepository ?? throw new ArgumentNullException(nameof(clientRepository)); + _logger = logger ?? throw new ArgumentNullException(nameof(logger)); + } + + public bool CreateDoc(string filePath, bool includeProducts, bool includeMaterials, bool includeClients) + { + try + { + var builder = new WordBuilder(filePath).AddHeader("Документ со справочниками"); + + if (includeProducts) + { + builder.AddParagraph("Изделия").AddTable([2400, 2400, 2400], GetProducts()); + } + if (includeMaterials) + { + builder.AddParagraph("Материалы").AddTable([2400, 2400, 2400], GetMaterials()); + } + if (includeClients) + { + builder.AddParagraph("Клиенты").AddTable([2400, 2400, 2400], GetClients()); + } + builder.Build(); + return true; + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка при формировании документа"); + return false; + } + } + private List GetProducts() + { + return [ + ["Название", "Вид", "Количество материала"], + .. _productRepository + .ReadProducts() + .Select(x => new string[] { x.Name, x.View.ToString(), x.CountMaterial.ToString() }), + ]; + } + + private List GetMaterials() + { + return [ + ["Название", "Используемое количество ", "Количество на складе"], + .. _materialRepository + .ReadMaterials() + .Select(x => new string[] { x.Name, x.UseCount.ToString(), x.CountInWareHouse.ToString() }), + ]; + } + private List GetClients() + { + return [ + ["Название", "Телефон", "Гендер"], + .. _clientRepository + .ReadClients() + .Select(x => new string[] { x.Name, x.Phone.ToString(), x.Gender.ToString() }), + ]; + } +} diff --git a/ProjectAtelier/Reports/ExcelBuilder.cs b/ProjectAtelier/Reports/ExcelBuilder.cs new file mode 100644 index 0000000..30862d4 --- /dev/null +++ b/ProjectAtelier/Reports/ExcelBuilder.cs @@ -0,0 +1,318 @@ +using DocumentFormat.OpenXml.Packaging; +using DocumentFormat.OpenXml.Spreadsheet; +using DocumentFormat.OpenXml; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProjectAtelier.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/ProjectAtelier/Reports/PdfBuilder.cs b/ProjectAtelier/Reports/PdfBuilder.cs new file mode 100644 index 0000000..902aa91 --- /dev/null +++ b/ProjectAtelier/Reports/PdfBuilder.cs @@ -0,0 +1,77 @@ +using MigraDoc.DocumentObjectModel; +using MigraDoc.DocumentObjectModel.Shapes.Charts; +using MigraDoc.Rendering; +using System.Reflection.Metadata; +using System.Text; +using Document = MigraDoc.DocumentObjectModel.Document; + +namespace ProjectAtelier.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/ProjectAtelier/Reports/TableReport.cs b/ProjectAtelier/Reports/TableReport.cs new file mode 100644 index 0000000..3674429 --- /dev/null +++ b/ProjectAtelier/Reports/TableReport.cs @@ -0,0 +1,69 @@ +using Microsoft.Extensions.Logging; +using ProjectAtelier.Repositories; +using ProjectAtelier.REPOSITORY; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProjectAtelier.Reports; + +internal class TableReport +{ + private readonly IMaterialReplenishmentRepository _materialReplenishmentRepository; + private readonly IMaterialRepository _materialRepository; + private readonly IOrderMaterialsRepository _orderMaterialsRepository; + private readonly ILogger _logger; + internal static readonly string[] item = ["Дата", "Количество пришло", "Количество ушло"]; + + public TableReport(IMaterialReplenishmentRepository materialrepRepository, + IMaterialRepository materialRepository, IOrderMaterialsRepository orderMaterialsRepository, ILogger logger) + { + _materialReplenishmentRepository = materialrepRepository ?? throw new ArgumentNullException(nameof(materialrepRepository)); + _materialRepository = materialRepository ?? throw new ArgumentNullException(nameof(materialRepository)); + _orderMaterialsRepository = orderMaterialsRepository ?? throw new ArgumentNullException(nameof(materialRepository)); + _logger = logger ?? throw new ArgumentNullException(nameof(logger)); + } + + public bool CreateTable(string filePath, int materialId, DateTime startDate, DateTime endDate) + { + try + { + new ExcelBuilder(filePath) + .AddHeader("Сводка по движению материала", 0, 3) + .AddParagraph("за период", 0) + .AddTable([10, 15, 15], GetData(materialId, startDate, endDate)) + .Build(); + return true; + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка при формировании документа"); + return false; + } + } + + private List GetData(int materialId, DateTime startDate, DateTime endDate) + { + var data = _materialReplenishmentRepository + .ReadMaterialsSpent() + .Where(x => x.DataTime >= startDate && x.DataTime <= endDate && x.IDMaterial == materialId) + .Select(x => new { Date = x.DataTime, CountIn = (int?)x.Count, CountOut = (int?)null }) + .Union( + _orderMaterialsRepository + .ReadOrders(materialId) + .Where(x => x.DataOrder >= startDate && x.DataOrder <= endDate) + .Select(x => new { Date = x.DataOrder, CountIn = (int?)null, CountOut = (int?)x.Count })) + .OrderBy(x => x.Date); + return new List() { item } + .Union( + data + .Select(x => new string[] { 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(); + } +} +//.Where(x => x.DataTime >= startDate && x.DataTime <= endDate && x.Name == _materialRepository.ReadMaterialById(materialId).Name) +// .Select(x => new { Date = x.DateReplenishment, CountIn = (int?)x.Count , CountOut = (int?)null }) \ No newline at end of file diff --git a/ProjectAtelier/Reports/WordBuilder.cs b/ProjectAtelier/Reports/WordBuilder.cs new file mode 100644 index 0000000..bc0178f --- /dev/null +++ b/ProjectAtelier/Reports/WordBuilder.cs @@ -0,0 +1,98 @@ +using DocumentFormat.OpenXml; +using DocumentFormat.OpenXml.Packaging; +using DocumentFormat.OpenXml.Wordprocessing; + +namespace ProjectAtelier.Reports; + +internal 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/ProjectAtelier/Repositories/IOrderMaterialsRepository.cs b/ProjectAtelier/Repositories/IOrderMaterialsRepository.cs new file mode 100644 index 0000000..c438029 --- /dev/null +++ b/ProjectAtelier/Repositories/IOrderMaterialsRepository.cs @@ -0,0 +1,13 @@ +using ProjectAtelier.Entities; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProjectAtelier.Repositories; + +public interface IOrderMaterialsRepository +{ + IEnumerable ReadOrders(int id); +} \ No newline at end of file diff --git a/ProjectAtelier/Repositories/Implementations/OrderMaterialsRepository.cs b/ProjectAtelier/Repositories/Implementations/OrderMaterialsRepository.cs new file mode 100644 index 0000000..7252b54 --- /dev/null +++ b/ProjectAtelier/Repositories/Implementations/OrderMaterialsRepository.cs @@ -0,0 +1,35 @@ +using Dapper; +using Microsoft.Extensions.Logging; +using Newtonsoft.Json; +using Npgsql; +using ProjectAtelier.Entities; + +namespace ProjectAtelier.Repositories.Implementations; + +public class OrderMaterialsRepository : IOrderMaterialsRepository +{ + private readonly IConnectionString _connectionString; + private readonly ILogger _logger; + + public OrderMaterialsRepository(IConnectionString connectionString, ILogger logger) + { + _connectionString = connectionString; + _logger = logger; + } + + public IEnumerable ReadOrders(int matid) + { + using var connection = new NpgsqlConnection(_connectionString.ConnectionString); + var querySelect = @" + SELECT orders.*, materials.id AS materialid, pm.count*op.count AS count + FROM orders + INNER JOIN order_products AS op ON orders.id = op.orderid + INNER JOIN products ON op.productid = products.id + INNER JOIN product_materials AS pm ON products.id = pm.productid + INNER JOIN materials ON pm.materialid = materials.id + Where materials.id = @matid"; + var orderMaterials = connection.Query(querySelect, new { matid }); + _logger.LogDebug("Полученные объекты: {json}", JsonConvert.SerializeObject(orderMaterials)); + return orderMaterials; + } +}