diff --git a/Publication/Entites/PrintingHouses.cs b/Publication/Entites/PrintingHouses.cs index 81bf026..050472d 100644 --- a/Publication/Entites/PrintingHouses.cs +++ b/Publication/Entites/PrintingHouses.cs @@ -1,4 +1,7 @@ -namespace Publication.Entites; +using DocumentFormat.OpenXml.Office2016.Drawing.ChartDrawing; +using Unity; + +namespace Publication.Entites; public class PrintingHouses { @@ -27,4 +30,18 @@ public class PrintingHouses printingHouseOrder = printingHouseOrders }; } + + public static PrintingHouses CreateEntity(TempPrintingHouseOrders tempPrintingHouseOrders, IEnumerable _printingHouseOrders) + { + return new PrintingHouses + { + Id = tempPrintingHouseOrders.Id, + Title = tempPrintingHouseOrders.Title, + Phone = tempPrintingHouseOrders.Phone, + Address = tempPrintingHouseOrders.Address, + MaterialsId = tempPrintingHouseOrders.MaterialsId, + Date = tempPrintingHouseOrders.Date, + printingHouseOrder = _printingHouseOrders + }; + } } diff --git a/Publication/Entites/TempPrintingHouseOrders.cs b/Publication/Entites/TempPrintingHouseOrders.cs new file mode 100644 index 0000000..0e58ac8 --- /dev/null +++ b/Publication/Entites/TempPrintingHouseOrders.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Publication.Entites; + +public class TempPrintingHouseOrders +{ + public int Id { get; set; } + public string Title { get; set; } + public string Phone { get; set; } + public string Address { get; set; } + + public int MaterialsId { get; set; } + + public DateTime Date { get; set; } + + public int OrderId { get; set; } + public int Count { get; set; } +} diff --git a/Publication/Forms/FormCountReport.Designer.cs b/Publication/Forms/FormCountReport.Designer.cs new file mode 100644 index 0000000..6f62495 --- /dev/null +++ b/Publication/Forms/FormCountReport.Designer.cs @@ -0,0 +1,142 @@ +namespace Publication.Forms +{ + partial class FormCountReport + { + /// + /// 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(); + label3 = new Label(); + label4 = new Label(); + textBoxFilePath = new TextBox(); + dateTimePickerStartDate = new DateTimePicker(); + dateTimePickerEndDate = new DateTimePicker(); + buttonSelectFilePath = new Button(); + buttonMakeReport = new Button(); + SuspendLayout(); + // + // label1 + // + label1.AutoSize = true; + label1.Location = new Point(22, 20); + label1.Name = "label1"; + label1.Size = new Size(112, 20); + label1.TabIndex = 0; + label1.Text = "Путь до файла:"; + // + // label3 + // + label3.AutoSize = true; + label3.Location = new Point(22, 79); + label3.Name = "label3"; + label3.Size = new Size(97, 20); + label3.TabIndex = 2; + label3.Text = "Дата начала:"; + // + // label4 + // + label4.AutoSize = true; + label4.Location = new Point(22, 130); + label4.Name = "label4"; + label4.Size = new Size(90, 20); + label4.TabIndex = 3; + label4.Text = "Дата конца:"; + // + // textBoxFilePath + // + textBoxFilePath.Location = new Point(188, 20); + textBoxFilePath.Name = "textBoxFilePath"; + textBoxFilePath.ReadOnly = true; + textBoxFilePath.Size = new Size(147, 27); + textBoxFilePath.TabIndex = 4; + // + // dateTimePickerStartDate + // + dateTimePickerStartDate.Location = new Point(188, 79); + dateTimePickerStartDate.Name = "dateTimePickerStartDate"; + dateTimePickerStartDate.Size = new Size(181, 27); + dateTimePickerStartDate.TabIndex = 5; + // + // dateTimePickerEndDate + // + dateTimePickerEndDate.Location = new Point(188, 125); + dateTimePickerEndDate.Name = "dateTimePickerEndDate"; + dateTimePickerEndDate.Size = new Size(181, 27); + dateTimePickerEndDate.TabIndex = 6; + // + // buttonSelectFilePath + // + buttonSelectFilePath.BackColor = SystemColors.Control; + buttonSelectFilePath.Location = new Point(341, 20); + buttonSelectFilePath.Name = "buttonSelectFilePath"; + buttonSelectFilePath.Size = new Size(28, 29); + buttonSelectFilePath.TabIndex = 7; + buttonSelectFilePath.Text = ".."; + buttonSelectFilePath.UseVisualStyleBackColor = false; + buttonSelectFilePath.Click += ButtonSelectFilePath_Click; + // + // buttonMakeReport + // + buttonMakeReport.BackColor = SystemColors.Control; + buttonMakeReport.Location = new Point(22, 186); + buttonMakeReport.Name = "buttonMakeReport"; + buttonMakeReport.Size = new Size(347, 29); + buttonMakeReport.TabIndex = 9; + buttonMakeReport.Text = "Сформировать"; + buttonMakeReport.UseVisualStyleBackColor = false; + buttonMakeReport.Click += ButtonMakeReport_Click; + // + // FormCountReport + // + AutoScaleDimensions = new SizeF(8F, 20F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(409, 249); + Controls.Add(buttonMakeReport); + Controls.Add(buttonSelectFilePath); + Controls.Add(dateTimePickerEndDate); + Controls.Add(dateTimePickerStartDate); + Controls.Add(textBoxFilePath); + Controls.Add(label4); + Controls.Add(label3); + Controls.Add(label1); + Name = "FormCountReport"; + Text = "Отчет движения заказов"; + ResumeLayout(false); + PerformLayout(); + } + + #endregion + + private Label label1; + private Label label3; + private Label label4; + private TextBox textBoxFilePath; + private DateTimePicker dateTimePickerStartDate; + private DateTimePicker dateTimePickerEndDate; + private Button buttonSelectFilePath; + private Button buttonMakeReport; + } +} \ No newline at end of file diff --git a/Publication/Forms/FormCountReport.cs b/Publication/Forms/FormCountReport.cs new file mode 100644 index 0000000..7c56465 --- /dev/null +++ b/Publication/Forms/FormCountReport.cs @@ -0,0 +1,66 @@ +using Publication.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 Publication.Forms +{ + public partial class FormCountReport : Form + { + IUnityContainer _container; + + public FormCountReport(IUnityContainer container) + { + InitializeComponent(); + _container = container ?? throw new ArgumentNullException(nameof(container)); + } + + 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 (dateTimePickerEndDate.Value <= dateTimePickerStartDate.Value) + { + throw new Exception("Дата начала должна быть раньше даты окончания"); + } + if (_container.Resolve().CreateTable(textBoxFilePath.Text, dateTimePickerStartDate.Value, dateTimePickerEndDate.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/Publication/Forms/FormCountReport.resx b/Publication/Forms/FormCountReport.resx new file mode 100644 index 0000000..af32865 --- /dev/null +++ b/Publication/Forms/FormCountReport.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/Publication/Forms/FormDirectoryReport.Designer.cs b/Publication/Forms/FormDirectoryReport.Designer.cs new file mode 100644 index 0000000..15ba2cd --- /dev/null +++ b/Publication/Forms/FormDirectoryReport.Designer.cs @@ -0,0 +1,100 @@ +namespace Publication.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() + { + checkBoxCustomers = new CheckBox(); + checkBoxMaterials = new CheckBox(); + checkBoxPublishingHouse = new CheckBox(); + buttonCreate = new Button(); + SuspendLayout(); + // + // checkBoxCustomers + // + checkBoxCustomers.AutoSize = true; + checkBoxCustomers.Location = new Point(54, 34); + checkBoxCustomers.Name = "checkBoxCustomers"; + checkBoxCustomers.Size = new Size(102, 24); + checkBoxCustomers.TabIndex = 0; + checkBoxCustomers.Text = "Заказчики"; + checkBoxCustomers.UseVisualStyleBackColor = true; + // + // checkBoxMaterials + // + checkBoxMaterials.AutoSize = true; + checkBoxMaterials.Location = new Point(54, 101); + checkBoxMaterials.Name = "checkBoxMaterials"; + checkBoxMaterials.Size = new Size(111, 24); + checkBoxMaterials.TabIndex = 1; + checkBoxMaterials.Text = "Материалы"; + checkBoxMaterials.UseVisualStyleBackColor = true; + // + // checkBoxPublishingHouse + // + checkBoxPublishingHouse.AutoSize = true; + checkBoxPublishingHouse.Location = new Point(54, 170); + checkBoxPublishingHouse.Name = "checkBoxPublishingHouse"; + checkBoxPublishingHouse.Size = new Size(124, 24); + checkBoxPublishingHouse.TabIndex = 2; + checkBoxPublishingHouse.Text = "Издательства"; + checkBoxPublishingHouse.UseVisualStyleBackColor = true; + // + // buttonCreate + // + buttonCreate.BackColor = SystemColors.Control; + buttonCreate.Location = new Point(278, 101); + buttonCreate.Name = "buttonCreate"; + buttonCreate.Size = new Size(133, 29); + buttonCreate.TabIndex = 3; + buttonCreate.Text = "Сформировать"; + buttonCreate.UseVisualStyleBackColor = false; + buttonCreate.Click += ButtonCreate_Click; + // + // FormDirectoryReport + // + AutoScaleDimensions = new SizeF(8F, 20F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(484, 236); + Controls.Add(buttonCreate); + Controls.Add(checkBoxPublishingHouse); + Controls.Add(checkBoxMaterials); + Controls.Add(checkBoxCustomers); + Name = "FormDirectoryReport"; + Text = "Выгрузка справочников"; + ResumeLayout(false); + PerformLayout(); + } + + #endregion + + private CheckBox checkBoxCustomers; + private CheckBox checkBoxMaterials; + private CheckBox checkBoxPublishingHouse; + private Button buttonCreate; + } +} \ No newline at end of file diff --git a/Publication/Forms/FormDirectoryReport.cs b/Publication/Forms/FormDirectoryReport.cs new file mode 100644 index 0000000..90b979e --- /dev/null +++ b/Publication/Forms/FormDirectoryReport.cs @@ -0,0 +1,58 @@ +using Publication.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 Publication.Forms +{ + public partial class FormDirectoryReport : Form + { + private readonly IUnityContainer _container; + public FormDirectoryReport(IUnityContainer container) + { + InitializeComponent(); + _container = container ?? throw new ArgumentNullException(nameof(container)); + } + + private void ButtonCreate_Click(object sender, EventArgs e) + { + try + { + if (!checkBoxCustomers.Checked && !checkBoxMaterials.Checked && !checkBoxPublishingHouse.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, checkBoxCustomers.Checked, + checkBoxMaterials.Checked, checkBoxPublishingHouse.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/Publication/Forms/FormDirectoryReport.resx b/Publication/Forms/FormDirectoryReport.resx new file mode 100644 index 0000000..af32865 --- /dev/null +++ b/Publication/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/Publication/Forms/FormMaterial.Designer.cs b/Publication/Forms/FormMaterial.Designer.cs index 3d7a372..8e57360 100644 --- a/Publication/Forms/FormMaterial.Designer.cs +++ b/Publication/Forms/FormMaterial.Designer.cs @@ -125,7 +125,7 @@ Controls.Add(labelDateMaterials); Name = "FormMaterial"; StartPosition = FormStartPosition.CenterScreen; - Text = "Материалы"; + Text = "Материал"; ((System.ComponentModel.ISupportInitialize)numericUpDownCount).EndInit(); ResumeLayout(false); PerformLayout(); diff --git a/Publication/Forms/FormMaterials.resx b/Publication/Forms/FormMaterials.resx index bb34764..5edf234 100644 --- a/Publication/Forms/FormMaterials.resx +++ b/Publication/Forms/FormMaterials.resx @@ -121,7 +121,7 @@ iVBORw0KGgoAAAANSUhEUgAABMYAAAOhCAIAAACSOT73AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - vAAADrwBlbxySQAA/7JJREFUeF7svQeAHMWZ9j8zq7uzTdCKu++7/zmAnOMZgbN9ZwQ+R2xjbJ/D3Wcj + vQAADr0BR/uQrQAA/7JJREFUeF7svQeAHMWZ9j8zq7uzTdCKu++7/zmAnOMZgbN9ZwQ+R2xjbJ/D3Wcj 4WyMJZLDGRDBRzA52IANknAAmyTCrqTdVQZFUBYoaxVWWRuUpV3t7v8N3bU97+yqZ3p6Zmdmn0c/9db0 VFX3pK736aquTnRDEARBEARBEARBUCTBUkIQBEEQBEEQBEERBUsJQRAEQRAEQRAERRQsJQRBEARBEARB EBRRsJQQBEEQBEEQBEFQRMFSQhAEQRAEQRAEQREFSwlBEARBEARBEARFFCwlBEEQBEEQBEEQFFGwlBAE @@ -2360,7 +2360,7 @@ iVBORw0KGgoAAAANSUhEUgAAA+gAAAPoCAYAAABNo9TkAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAj - kQAAI5EBkFuzoQAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAALoxSURBVHhe7N13 + kwAAI5MB76VwKAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAALoxSURBVHhe7N13 gBTl/cfxn70nsZvEksQkliTG3nvBXqLGEnvvvfeuKIgiKtWOoFQbiIqI2LGj9OOOdvTeQeT5fZ/ZnWNu 73vH3s7u7Dwz7z9e2b3PbtgF7mZ4e2X/zxgDAAAAAA1a9uST64vdxRniHvHKr08++aWY5HniiTFiuPhx 6RNPfCUGiPdE+6UtWlwrmvzSosXm2q8NIEMdAQAAAMC0bLnOspYtz5EY/1iYIIny5Z54ooYEeW0tWngk diff --git a/Publication/Forms/FormMaterialsDistributionReport.Designer.cs b/Publication/Forms/FormMaterialsDistributionReport.Designer.cs new file mode 100644 index 0000000..5225ef9 --- /dev/null +++ b/Publication/Forms/FormMaterialsDistributionReport.Designer.cs @@ -0,0 +1,109 @@ +namespace Publication.Forms +{ + partial class FormMaterialsDistributionReport + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + buttonSelectFileName = new Button(); + labelFileName = new Label(); + label1 = new Label(); + dateTimePicker = new DateTimePicker(); + buttonCreate = new Button(); + SuspendLayout(); + // + // buttonSelectFileName + // + buttonSelectFileName.BackColor = SystemColors.Control; + buttonSelectFileName.Location = new Point(12, 23); + buttonSelectFileName.Name = "buttonSelectFileName"; + buttonSelectFileName.Size = new Size(129, 29); + buttonSelectFileName.TabIndex = 0; + buttonSelectFileName.Text = "Выбрать"; + buttonSelectFileName.UseVisualStyleBackColor = false; + buttonSelectFileName.Click += ButtonSelectFileName_Click; + // + // labelFileName + // + labelFileName.AutoSize = true; + labelFileName.Location = new Point(179, 27); + labelFileName.Name = "labelFileName"; + labelFileName.Size = new Size(45, 20); + labelFileName.TabIndex = 1; + labelFileName.Text = "Файл"; + // + // label1 + // + label1.AutoSize = true; + label1.Location = new Point(12, 81); + label1.Name = "label1"; + label1.Size = new Size(44, 20); + label1.TabIndex = 2; + label1.Text = "Дата:"; + // + // dateTimePicker + // + dateTimePicker.Location = new Point(179, 76); + dateTimePicker.Name = "dateTimePicker"; + dateTimePicker.Size = new Size(183, 27); + dateTimePicker.TabIndex = 3; + // + // buttonCreate + // + buttonCreate.BackColor = SystemColors.Control; + buttonCreate.Location = new Point(12, 146); + buttonCreate.Name = "buttonCreate"; + buttonCreate.Size = new Size(350, 29); + buttonCreate.TabIndex = 4; + buttonCreate.Text = "Сформировать"; + buttonCreate.UseVisualStyleBackColor = false; + buttonCreate.Click += ButtonCreate_Click; + // + // FormMaterialsDistributionReport + // + AutoScaleDimensions = new SizeF(8F, 20F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(395, 227); + Controls.Add(buttonCreate); + Controls.Add(dateTimePicker); + Controls.Add(label1); + Controls.Add(labelFileName); + Controls.Add(buttonSelectFileName); + Name = "FormMaterialsDistributionReport"; + Text = "Распределение материалов"; + ResumeLayout(false); + PerformLayout(); + } + + #endregion + + private Button buttonSelectFileName; + private Label labelFileName; + private Label label1; + private DateTimePicker dateTimePicker; + private Button buttonCreate; + } +} diff --git a/Publication/Forms/FormMaterialsDistributionReport.cs b/Publication/Forms/FormMaterialsDistributionReport.cs new file mode 100644 index 0000000..5ec465f --- /dev/null +++ b/Publication/Forms/FormMaterialsDistributionReport.cs @@ -0,0 +1,65 @@ +using Publication.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 Publication.Forms; + +public partial class FormMaterialsDistributionReport : Form +{ + private string _fileName = string.Empty; + + private readonly IUnityContainer _container; + + public FormMaterialsDistributionReport(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/Publication/Forms/FormMaterialsDistributionReport.resx b/Publication/Forms/FormMaterialsDistributionReport.resx new file mode 100644 index 0000000..af32865 --- /dev/null +++ b/Publication/Forms/FormMaterialsDistributionReport.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/Publication/Forms/FormPrintingHouse.cs b/Publication/Forms/FormPrintingHouse.cs index 5d2f30d..66fe4cf 100644 --- a/Publication/Forms/FormPrintingHouse.cs +++ b/Publication/Forms/FormPrintingHouse.cs @@ -82,7 +82,8 @@ MessageBoxButtons.OK, MessageBoxIcon.Error); ) ); } - return list; + return list.GroupBy(x => x.OrderId, x => x.Count, (id, counts) => + PrintingHouseOrders.CreateEntity(0, id, counts.Sum())).ToList(); } private void ButtonBreak_Click(object sender, EventArgs e) => Close(); diff --git a/Publication/Forms/FormPrintingHouse.resx b/Publication/Forms/FormPrintingHouse.resx index 731849c..6f4b579 100644 --- a/Publication/Forms/FormPrintingHouse.resx +++ b/Publication/Forms/FormPrintingHouse.resx @@ -123,4 +123,10 @@ True + + True + + + True + \ No newline at end of file diff --git a/Publication/Forms/FormPrintingHouses.Designer.cs b/Publication/Forms/FormPrintingHouses.Designer.cs index 3181936..a9c5c0c 100644 --- a/Publication/Forms/FormPrintingHouses.Designer.cs +++ b/Publication/Forms/FormPrintingHouses.Designer.cs @@ -42,7 +42,7 @@ panel1.Controls.Add(buttonDelete); panel1.Controls.Add(buttonAdd); panel1.Dock = DockStyle.Right; - panel1.Location = new Point(603, 0); + panel1.Location = new Point(856, 0); panel1.Name = "panel1"; panel1.Size = new Size(197, 450); panel1.TabIndex = 2; diff --git a/Publication/Forms/Publication.Designer.cs b/Publication/Forms/Publication.Designer.cs index 0f5455e..20e6bde 100644 --- a/Publication/Forms/Publication.Designer.cs +++ b/Publication/Forms/Publication.Designer.cs @@ -38,6 +38,9 @@ CreateOrderToolStripMenuItem = new ToolStripMenuItem(); PrintingToolStripMenuItem = new ToolStripMenuItem(); ReportsToolStripMenuItem = new ToolStripMenuItem(); + DirectoryReportToolStripMenuItem = new ToolStripMenuItem(); + CountReportToolStripMenuItem = new ToolStripMenuItem(); + MaterialDistributionToolStripMenuItem = new ToolStripMenuItem(); menuStrip.SuspendLayout(); SuspendLayout(); // @@ -92,9 +95,28 @@ // // ReportsToolStripMenuItem // + ReportsToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { DirectoryReportToolStripMenuItem, CountReportToolStripMenuItem, MaterialDistributionToolStripMenuItem }); ReportsToolStripMenuItem.Name = "ReportsToolStripMenuItem"; resources.ApplyResources(ReportsToolStripMenuItem, "ReportsToolStripMenuItem"); // + // DirectoryReportToolStripMenuItem + // + DirectoryReportToolStripMenuItem.Name = "DirectoryReportToolStripMenuItem"; + resources.ApplyResources(DirectoryReportToolStripMenuItem, "DirectoryReportToolStripMenuItem"); + DirectoryReportToolStripMenuItem.Click += DirectoryReportToolStripMenuItem_Click; + // + // CountReportToolStripMenuItem + // + CountReportToolStripMenuItem.Name = "CountReportToolStripMenuItem"; + resources.ApplyResources(CountReportToolStripMenuItem, "CountReportToolStripMenuItem"); + CountReportToolStripMenuItem.Click += CountReportToolStripMenuItem_Click; + // + // MaterialDistributionToolStripMenuItem + // + MaterialDistributionToolStripMenuItem.Name = "MaterialDistributionToolStripMenuItem"; + resources.ApplyResources(MaterialDistributionToolStripMenuItem, "MaterialDistributionToolStripMenuItem"); + MaterialDistributionToolStripMenuItem.Click += MaterialDistributionToolStripMenuItem_Click; + // // Publication // resources.ApplyResources(this, "$this"); @@ -119,5 +141,8 @@ private ToolStripMenuItem CreateOrderToolStripMenuItem; private ToolStripMenuItem PrintingToolStripMenuItem; private ToolStripMenuItem ReportsToolStripMenuItem; + private ToolStripMenuItem DirectoryReportToolStripMenuItem; + private ToolStripMenuItem CountReportToolStripMenuItem; + private ToolStripMenuItem MaterialDistributionToolStripMenuItem; } } diff --git a/Publication/Forms/Publication.cs b/Publication/Forms/Publication.cs index 1840d63..fad35d2 100644 --- a/Publication/Forms/Publication.cs +++ b/Publication/Forms/Publication.cs @@ -81,4 +81,40 @@ public partial class Publication : Form MessageBoxButtons.OK, MessageBoxIcon.Error); } } + + private void DirectoryReportToolStripMenuItem_Click(object sender, EventArgs e) + { + try + { + unityContainer.Resolve().ShowDialog(); + } + catch (Exception ex) + { + MessageBox.Show(ex.Message, " ", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + + private void CountReportToolStripMenuItem_Click(object sender, EventArgs e) + { + try + { + unityContainer.Resolve().ShowDialog(); + } + catch (Exception ex) + { + MessageBox.Show(ex.Message, " ", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + + private void MaterialDistributionToolStripMenuItem_Click(object sender, EventArgs e) + { + try + { + unityContainer.Resolve().ShowDialog(); + } + catch (Exception ex) + { + MessageBox.Show(ex.Message, " ", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } } diff --git a/Publication/Forms/Publication.resx b/Publication/Forms/Publication.resx index 230ba5a..2ecd179 100644 --- a/Publication/Forms/Publication.resx +++ b/Publication/Forms/Publication.resx @@ -121,6 +121,24 @@ 17, 17 + + 185, 26 + + + Заказчики + + + 185, 26 + + + Материалы + + + 185, 26 + + + Издательства + 117, 24 @@ -128,13 +146,13 @@ Справочники - 224, 26 + 188, 26 Создать заказ - 224, 26 + 188, 26 Печать @@ -145,6 +163,31 @@ Операции + + + Ctrl+W + + + 350, 26 + + + Документ со справочниками + + + Ctrl+E + + + 350, 26 + + + Движение заказов + + + 350, 26 + + + Распределение материалов + 73, 24 @@ -176,24 +219,6 @@ 0 - - 185, 26 - - - Заказчики - - - 224, 26 - - - Материалы - - - 224, 26 - - - Издательства - True @@ -2156,7 +2181,6 @@ Gg8Vxln/2Q== - Stretch @@ -2217,6 +2241,24 @@ System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + DirectoryReportToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + CountReportToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + MaterialDistributionToolStripMenuItem + + + System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Culture=neutral, PublicKeyToken=b77a5c561934e089 + Publication diff --git a/Publication/Publication.csproj b/Publication/Publication.csproj index 0307ec6..245adf8 100644 --- a/Publication/Publication.csproj +++ b/Publication/Publication.csproj @@ -10,11 +10,14 @@ + + + diff --git a/Publication/Reports/ChartReport.cs b/Publication/Reports/ChartReport.cs new file mode 100644 index 0000000..64fe62b --- /dev/null +++ b/Publication/Reports/ChartReport.cs @@ -0,0 +1,47 @@ +using Microsoft.Extensions.Logging; +using Publication.Repositories; +using Publication.Repositories.Implementations; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Publication.Reports; + +public class ChartReport +{ + private readonly IMaterialRepository _materialRepository; + private readonly ILogger _logger; + public ChartReport(IMaterialRepository materialRepository, ILogger logger) + { + _materialRepository = materialRepository ?? throw new ArgumentNullException(nameof(materialRepository)); + _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 _materialRepository + .ReadMaterials() + .Where(x => x.DateMaterials.Date == dateTime.Date) + .GroupBy(x => x.Id, (key, group) => new { ID = key, Count = group.Sum(y => y.Count) }) + .Select(x => (x.ID.ToString(), (double)x.Count)) + .ToList(); + } +} diff --git a/Publication/Reports/DocReport.cs b/Publication/Reports/DocReport.cs new file mode 100644 index 0000000..ec39160 --- /dev/null +++ b/Publication/Reports/DocReport.cs @@ -0,0 +1,86 @@ +using Microsoft.Extensions.Logging; +using Publication.Repositories; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Publication.Reports; + +public class DocReport +{ + private readonly ICustomerRepository _customerRepository; + private readonly IMaterialRepository _materialRepository; + private readonly IPublisingHouseRepository _publisingHouseRepository; + + private readonly ILogger _logger; + + public DocReport(ICustomerRepository customerRepository, IMaterialRepository materialRepository, + IPublisingHouseRepository publisingHouseRepository, ILogger logger) + { + _customerRepository = customerRepository ?? throw new ArgumentNullException(nameof(customerRepository)); + _materialRepository = materialRepository ?? throw new ArgumentNullException(nameof(materialRepository)); + _publisingHouseRepository = publisingHouseRepository ?? throw new ArgumentNullException(nameof(publisingHouseRepository)); + _logger = logger ?? throw new ArgumentNullException(nameof(logger)); + } + + public bool CreateDoc(string filePath, bool includeClients, bool includeManufacturers, bool includeProducts) + { + try + { + var builder = new WordBuilder(filePath).AddHeader("Документ со справочниками"); + if (includeClients) + { + builder.AddParagraph("Заказчики").AddTable([2400, 1200, 2400, 2400, 2400], GetCustomers()); + } + if (includeManufacturers) + { + builder.AddParagraph("Материалы").AddTable([1200, 2400, 2400], GetMaterials()); + } + if (includeProducts) + { + builder.AddParagraph("Издательства").AddTable([2400, 2400, 2400], GetPublishingHouse()); + } + builder.Build(); + return true; + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка при формировании документа"); + return false; + } + } + + private List GetCustomers() + { + return [ + ["ФИО заказчика", "Возраст", "Тип заказчика", "Телефон", "Email"], + .. _customerRepository + .ReadCustomers() + .Select(x => new string[] { x.FullName, x.Age.ToString(), x.TypeCustomer.ToString(), x.Phone.ToString(), x.Email}), + ]; + } + + + private List GetMaterials() + { + return [ + [ "Материал", "Количество", "Дата"], + .. _materialRepository + .ReadMaterials() + .Select(x => new string[] {x.Material.ToString(), x.Count.ToString(), x.DateMaterials.ToString()}), + ]; + } + + + private List GetPublishingHouse() + { + return [ + ["Название", "Адрес", "Рабочик телефон"], + .._publisingHouseRepository + .ReadPublishingHouses() + .Select(x => new string[] {x.Title, x.Address, x.WorkPhone.ToString()}), + ]; + } +} diff --git a/Publication/Reports/ExcelBuilder.cs b/Publication/Reports/ExcelBuilder.cs new file mode 100644 index 0000000..01cf409 --- /dev/null +++ b/Publication/Reports/ExcelBuilder.cs @@ -0,0 +1,308 @@ +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 Publication.Reports; + +public 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.BoldTextWithBorder); + for (int i = startIndex + 1; i < startIndex + count; ++i) + { + CreateCell(i, _rowIndex, "", StyleIndex.BoldTextWithBorder); + } + _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" }, + Bold = new Bold(), + FontFamilyNumbering = new FontFamilyNumbering() { Val = 2 }, + FontScheme = new FontScheme() + { + Val = new EnumValue(FontSchemeValues.Minor) + } + }); + workbookStylesPart.Stylesheet.Append(fonts); + // Default Fill + var fills = new Fills() { Count = 1 }; + fills.Append(new Fill + { + PatternFill = new PatternFill() + { + PatternType = new EnumValue(PatternValues.None) + } + }); + workbookStylesPart.Stylesheet.Append(fills); + // Default Border + var borders = new Borders() { Count = 2 }; + borders.Append(new Border + { + LeftBorder = new LeftBorder(), + RightBorder = new RightBorder(), + TopBorder = new TopBorder(), + BottomBorder = new BottomBorder(), + DiagonalBorder = new DiagonalBorder() + }); + + borders.Append(new Border + { + LeftBorder = new LeftBorder() { Style = BorderStyleValues.Medium }, + RightBorder = new RightBorder() { Style = BorderStyleValues.Medium }, + TopBorder = new TopBorder() { Style = BorderStyleValues.Medium }, + BottomBorder = new BottomBorder() { Style = BorderStyleValues.Medium }, + DiagonalBorder = new DiagonalBorder() { Style = BorderStyleValues.Medium }, + }); + 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 = 1, + FormatId = 0, + FontId = 0, + BorderId = 1, + FillId = 0, + Alignment = new Alignment() + { + Horizontal = HorizontalAlignmentValues.Left, + Vertical = VerticalAlignmentValues.Center, + WrapText = true + } + }); + cellFormats.Append(new CellFormat + { + NumberFormatId = 2, + FormatId = 0, + FontId = 1, + BorderId = 0, + FillId = 0, + Alignment = new Alignment() + { + Horizontal = HorizontalAlignmentValues.Left, + Vertical = VerticalAlignmentValues.Center, + WrapText = true + } + }); + cellFormats.Append(new CellFormat + { + NumberFormatId = 3, + FormatId = 0, + FontId = 1, + BorderId = 1, + FillId = 0, + Alignment = new Alignment() + { + Horizontal = HorizontalAlignmentValues.Left, + 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/Publication/Reports/PdfBuilder.cs b/Publication/Reports/PdfBuilder.cs new file mode 100644 index 0000000..23457a2 --- /dev/null +++ b/Publication/Reports/PdfBuilder.cs @@ -0,0 +1,87 @@ +using MigraDoc.DocumentObjectModel; +using MigraDoc.DocumentObjectModel.Shapes.Charts; +using MigraDoc.Rendering; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Publication.Reports; + +public class PdfBuilder +{ + private readonly string _filePath; + private readonly Document _document; + public PdfBuilder(string filePath) + { + if (string.IsNullOrWhiteSpace(filePath)) + { + throw new ArgumentNullException(nameof(filePath)); + } + if (File.Exists(filePath)) + { + File.Delete(filePath); + } + _filePath = filePath; + _document = new Document(); + DefineStyles(); + } + public PdfBuilder AddHeader(string header) + { + _document.AddSection().AddParagraph(header, "NormalBold"); + return this; + } + + public PdfBuilder AddPieChart(string title, List<(string Caption, double Value)> data) + { + if (data == null || data.Count == 0) + { + return this; + } + var chart = new Chart(ChartType.Pie2D); + var series = chart.SeriesCollection.AddSeries(); + series.Add(data.Select(x => x.Value).ToArray()); + + var xseries = chart.XValues.AddXSeries(); + xseries.Add(data.Select(x => x.Caption).ToArray()); + + chart.DataLabel.Type = DataLabelType.Percent; + chart.DataLabel.Position = DataLabelPosition.OutsideEnd; + + chart.Width = Unit.FromCentimeter(16); + chart.Height = Unit.FromCentimeter(12); + + chart.TopArea.AddParagraph(title); + + chart.XAxis.MajorTickMark = TickMarkType.Outside; + + chart.YAxis.MajorTickMark = TickMarkType.Outside; + chart.YAxis.HasMajorGridlines = true; + + chart.PlotArea.LineFormat.Width = 1; + chart.PlotArea.LineFormat.Visible = true; + + chart.TopArea.AddLegend(); + + _document.LastSection.Add(chart); + return this; + } + + public void Build() + { + Encoding.RegisterProvider(CodePagesEncodingProvider.Instance); + var renderer = new PdfDocumentRenderer(true) + { + Document = _document + }; + renderer.RenderDocument(); + renderer.PdfDocument.Save(_filePath); + } + private void DefineStyles() + { + var headerStyle = _document.AddStyle("NormalBold", "Normal"); + headerStyle.Font.Bold = true; + headerStyle.Font.Size = 14; + } +} diff --git a/Publication/Reports/TableReport.cs b/Publication/Reports/TableReport.cs new file mode 100644 index 0000000..69e62f1 --- /dev/null +++ b/Publication/Reports/TableReport.cs @@ -0,0 +1,65 @@ +using Microsoft.Extensions.Logging; +using Publication.Repositories; +using Publication.Repositories.Implementations; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Publication.Reports; + +public class TableReport +{ + private readonly IMaterialRepository _materialRepository; + private readonly IPrintingHouseRepository _printingHouseRepository; + private readonly ILogger _logger; + internal static readonly string[] item = ["Id","Дата", "Количество заказов пришло", "Количество заказов ушло"]; + + public TableReport(IPrintingHouseRepository printingHouseRepository, IMaterialRepository materialRepository, ILogger logger) + { + _printingHouseRepository = printingHouseRepository ?? throw new ArgumentNullException(nameof(printingHouseRepository)); + _materialRepository = materialRepository ?? throw new ArgumentNullException(nameof(materialRepository)); + _logger = logger ?? throw new ArgumentNullException(nameof(logger)); + } + + public bool CreateTable(string filePath, DateTime startDate, DateTime endDate) + { + try + { + new ExcelBuilder(filePath) + .AddHeader("Сводка заказов", 0, 4) + .AddParagraph("за период", 0) + .AddTable([10, 10, 15, 15], GetData(startDate, endDate)) + .Build(); + return true; + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка при формировании документа"); + return false; + } + } + + private List GetData(DateTime startDate, DateTime endDate) + { + var data = _printingHouseRepository + .ReadPrintingHouses() + .Where(x => x.Date >= startDate && x.Date <= endDate && x.printingHouseOrder.Any(y => y.PrintingHouseId == x.Id)) + .Select(x => new {x.Id, x.Date, CountIn = (int?)null, CountOut = (int?)x.printingHouseOrder.First(y => y.PrintingHouseId == x.Id).Count }) + .Union( + _materialRepository + .ReadMaterials() + .Where(x => x.DateMaterials >= startDate && x.DateMaterials <= endDate) + .Select(x => new {x.Id, Date = x.DateMaterials, CountIn = (int?)x.Count, CountOut = (int?)null })) + .OrderBy(x => x.Date); + return + new List() { item } + .Union( + data + .Select(x => new string[] {x.Id.ToString(), x.Date.ToString(), x.CountIn?.ToString() ?? string.Empty, x.CountOut?.ToString() ?? string.Empty })) + .Union([["", "Всего", data.Sum(x => x.CountIn ?? 0).ToString(), data.Sum(x => x.CountOut ?? 0).ToString()]]) + .ToList(); + } + +} diff --git a/Publication/Reports/WordBuilder.cs b/Publication/Reports/WordBuilder.cs new file mode 100644 index 0000000..59d57de --- /dev/null +++ b/Publication/Reports/WordBuilder.cs @@ -0,0 +1,97 @@ +using DocumentFormat.OpenXml.Packaging; +using DocumentFormat.OpenXml; +using DocumentFormat.OpenXml.Wordprocessing; + +namespace Publication.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()); + run.PrependChild(new RunProperties()); + run.RunProperties.AddChild(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/Publication/Repositories/Implementations/PrintingHouseRepository.cs b/Publication/Repositories/Implementations/PrintingHouseRepository.cs index 48a4870..b543e66 100644 --- a/Publication/Repositories/Implementations/PrintingHouseRepository.cs +++ b/Publication/Repositories/Implementations/PrintingHouseRepository.cs @@ -3,6 +3,7 @@ using Newtonsoft.Json; using Npgsql; using Publication.Entites; using Dapper; +using Unity; namespace Publication.Repositories.Implementations; @@ -26,8 +27,8 @@ public class PrintingHouseRepository : IPrintingHouseRepository using var connection = new NpgsqlConnection(connectionRepository.GetConnection); connection.Open(); using var transaction=connection.BeginTransaction(); - var queryInsert = @"INSERT INTO PrintingHouses (Title, Phone, Address, MaterialsId) - VALUES (@Title, @Phone, @Address, @MaterialsId); + var queryInsert = @"INSERT INTO PrintingHouses (Title, Phone, Address, Date, MaterialsId) + VALUES (@Title, @Phone, @Address, @Date, @MaterialsId); SELECT MAX(Id) FROM PrintingHouses"; var PrintingHouseId = connection.QueryFirst(queryInsert, printerHouse, transaction); var querySubInsert = @" @@ -75,10 +76,15 @@ public class PrintingHouseRepository : IPrintingHouseRepository try { using var connection = new NpgsqlConnection(connectionRepository.GetConnection); - var querySelect = "SELECT * FROM PrintingHouses"; - var printingHouses = connection.Query(querySelect); + var querySelect = @"SELECT ph.*, pho.OrderId, pho.Count + FROM PrintingHouses ph + INNER JOIN PrintingHouseOrders pho ON pho.PrintingHouseId = ph.Id"; + var printingHouses = connection.Query(querySelect); logger.LogDebug("Полученные объекты: {json}", JsonConvert.SerializeObject(printingHouses)); - return printingHouses; + return printingHouses.GroupBy(x => x.Id, y => y, + (key, value) => PrintingHouses.CreateEntity(value.First(), + value.Select(z => PrintingHouseOrders.CreateEntity(z.Id, z.OrderId, z.Count)))).ToList(); + } catch (Exception ex) {