diff --git a/ProjectLibrary/Entites/Book_Orders.cs b/ProjectLibrary/Entites/Book_Orders.cs index 6f7c6e2..9b6f030 100644 --- a/ProjectLibrary/Entites/Book_Orders.cs +++ b/ProjectLibrary/Entites/Book_Orders.cs @@ -10,13 +10,15 @@ namespace ProjectLibrary.Entites { public int BookID { get; private set; } public int OrderID { get; private set; } + public int Count { get; private set; } - public static Book_Orders CreateEntity(int orderID,int bookID ) + public static Book_Orders CreateEntity(int orderID,int bookID, int count ) { return new Book_Orders { BookID = bookID, - OrderID = orderID + OrderID = orderID, + Count = count }; } } diff --git a/ProjectLibrary/Entites/Orders.cs b/ProjectLibrary/Entites/Orders.cs index f395901..03f05db 100644 --- a/ProjectLibrary/Entites/Orders.cs +++ b/ProjectLibrary/Entites/Orders.cs @@ -1,4 +1,6 @@ -using Microsoft.VisualBasic; +using DocumentFormat.OpenXml.Office2010.Excel; +using Microsoft.VisualBasic; +using ProjectLibrary.Entities; using System; using System.Collections.Generic; using System.Linq; @@ -31,5 +33,17 @@ namespace ProjectLibrary.Entites BookOrders = bookOrders }; } + + public static Orders CreateEntity(TempBookOrders tempBookOrders, IEnumerable bookOrders) + { + return new Orders + { + Id = tempBookOrders.Id, + OrderDate = tempBookOrders.OrderDate, + ReturnDate = tempBookOrders.ReturnDate, + ReaderID = tempBookOrders.ReaderID, + BookOrders = bookOrders + }; + } } } diff --git a/ProjectLibrary/Entites/TempBookOrders.cs b/ProjectLibrary/Entites/TempBookOrders.cs new file mode 100644 index 0000000..3597cd2 --- /dev/null +++ b/ProjectLibrary/Entites/TempBookOrders.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProjectLibrary.Entites; + +public class TempBookOrders +{ + public int Id { get; set; } + public DateTime OrderDate { get; set; } + public DateTime ReturnDate { get; set; } + public int ReaderID { get; set; } + public int BookID { get; set; } + public int Count { get; set; } + + +} diff --git a/ProjectLibrary/FormLibrary.Designer.cs b/ProjectLibrary/FormLibrary.Designer.cs index ad19e59..9ea1a21 100644 --- a/ProjectLibrary/FormLibrary.Designer.cs +++ b/ProjectLibrary/FormLibrary.Designer.cs @@ -37,6 +37,9 @@ обновлениеБилетаToolStripMenuItem = new ToolStripMenuItem(); заказатьКнигиToolStripMenuItem = new ToolStripMenuItem(); отчетыToolStripMenuItem = new ToolStripMenuItem(); + DocReportToolStripMenuItem = new ToolStripMenuItem(); + bookReportToolStripMenuItem = new ToolStripMenuItem(); + OrderDistributionToolStripMenuItem = new ToolStripMenuItem(); menuStrip1.SuspendLayout(); SuspendLayout(); // @@ -47,8 +50,8 @@ menuStrip1.Items.AddRange(new ToolStripItem[] { справочникиToolStripMenuItem, операцииToolStripMenuItem, отчетыToolStripMenuItem }); menuStrip1.Location = new Point(0, 0); menuStrip1.Name = "menuStrip1"; - menuStrip1.Padding = new Padding(5, 2, 0, 2); - menuStrip1.Size = new Size(728, 24); + menuStrip1.Padding = new Padding(6, 3, 0, 3); + menuStrip1.Size = new Size(832, 30); menuStrip1.TabIndex = 0; menuStrip1.Text = "menuStrip"; // @@ -56,27 +59,27 @@ // справочникиToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { книгаToolStripMenuItem, читателиToolStripMenuItem, библиотекиToolStripMenuItem }); справочникиToolStripMenuItem.Name = "справочникиToolStripMenuItem"; - справочникиToolStripMenuItem.Size = new Size(94, 20); + справочникиToolStripMenuItem.Size = new Size(117, 24); справочникиToolStripMenuItem.Text = "Справочники"; // // книгаToolStripMenuItem // книгаToolStripMenuItem.Name = "книгаToolStripMenuItem"; - книгаToolStripMenuItem.Size = new Size(180, 22); + книгаToolStripMenuItem.Size = new Size(175, 26); книгаToolStripMenuItem.Text = "Книга"; книгаToolStripMenuItem.Click += книгаToolStripMenuItem_Click; // // читателиToolStripMenuItem // читателиToolStripMenuItem.Name = "читателиToolStripMenuItem"; - читателиToolStripMenuItem.Size = new Size(180, 22); + читателиToolStripMenuItem.Size = new Size(175, 26); читателиToolStripMenuItem.Text = "Читатели"; читателиToolStripMenuItem.Click += читателиToolStripMenuItem_Click; // // библиотекиToolStripMenuItem // библиотекиToolStripMenuItem.Name = "библиотекиToolStripMenuItem"; - библиотекиToolStripMenuItem.Size = new Size(180, 22); + библиотекиToolStripMenuItem.Size = new Size(175, 26); библиотекиToolStripMenuItem.Text = "Библиотеки"; библиотекиToolStripMenuItem.Click += библиотекиToolStripMenuItem_Click; // @@ -84,39 +87,60 @@ // операцииToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { обновлениеБилетаToolStripMenuItem, заказатьКнигиToolStripMenuItem }); операцииToolStripMenuItem.Name = "операцииToolStripMenuItem"; - операцииToolStripMenuItem.Size = new Size(75, 20); + операцииToolStripMenuItem.Size = new Size(95, 24); операцииToolStripMenuItem.Text = "Операции"; // // обновлениеБилетаToolStripMenuItem // обновлениеБилетаToolStripMenuItem.Name = "обновлениеБилетаToolStripMenuItem"; - обновлениеБилетаToolStripMenuItem.Size = new Size(184, 22); + обновлениеБилетаToolStripMenuItem.Size = new Size(232, 26); обновлениеБилетаToolStripMenuItem.Text = "Обновление билета"; обновлениеБилетаToolStripMenuItem.Click += обновлениеБилетаToolStripMenuItem_Click; // // заказатьКнигиToolStripMenuItem // заказатьКнигиToolStripMenuItem.Name = "заказатьКнигиToolStripMenuItem"; - заказатьКнигиToolStripMenuItem.Size = new Size(184, 22); + заказатьКнигиToolStripMenuItem.Size = new Size(232, 26); заказатьКнигиToolStripMenuItem.Text = "Заказать книги"; заказатьКнигиToolStripMenuItem.Click += заказатьКнигиToolStripMenuItem_Click; // // отчетыToolStripMenuItem // + отчетыToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { DocReportToolStripMenuItem, bookReportToolStripMenuItem, OrderDistributionToolStripMenuItem }); отчетыToolStripMenuItem.Name = "отчетыToolStripMenuItem"; - отчетыToolStripMenuItem.Size = new Size(60, 20); + отчетыToolStripMenuItem.Size = new Size(73, 24); отчетыToolStripMenuItem.Text = "Отчеты"; // + // DocReportToolStripMenuItem + // + DocReportToolStripMenuItem.Name = "DocReportToolStripMenuItem"; + DocReportToolStripMenuItem.Size = new Size(294, 26); + DocReportToolStripMenuItem.Text = "Документ со справочниками"; + DocReportToolStripMenuItem.Click += DocReportToolStripMenuItem_Click; + // + // bookReportToolStripMenuItem + // + bookReportToolStripMenuItem.Name = "bookReportToolStripMenuItem"; + bookReportToolStripMenuItem.Size = new Size(294, 26); + bookReportToolStripMenuItem.Text = "Движение книг"; + bookReportToolStripMenuItem.Click += BookReportToolStripMenuItem_Click; + // + // OrderDistributionToolStripMenuItem + // + OrderDistributionToolStripMenuItem.Name = "OrderDistributionToolStripMenuItem"; + OrderDistributionToolStripMenuItem.Size = new Size(294, 26); + OrderDistributionToolStripMenuItem.Text = "Кол-во книг в библиотеках"; + OrderDistributionToolStripMenuItem.Click += OrderDistributionToolStripMenuItem_Click; + // // FormLibrary // - AutoScaleDimensions = new SizeF(7F, 15F); + AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleMode = AutoScaleMode.Font; BackColor = SystemColors.ButtonHighlight; BackgroundImage = Properties.Resources.Снимок_экрана_2024_11_19_132940; - ClientSize = new Size(728, 340); + ClientSize = new Size(832, 453); Controls.Add(menuStrip1); MainMenuStrip = menuStrip1; - Margin = new Padding(3, 2, 3, 2); Name = "FormLibrary"; StartPosition = FormStartPosition.CenterScreen; Text = "Библиотека"; @@ -137,5 +161,8 @@ private ToolStripMenuItem читателиToolStripMenuItem; private ToolStripMenuItem библиотекиToolStripMenuItem; private ToolStripMenuItem заказатьКнигиToolStripMenuItem; + private ToolStripMenuItem DocReportToolStripMenuItem; + private ToolStripMenuItem bookReportToolStripMenuItem; + private ToolStripMenuItem OrderDistributionToolStripMenuItem; } } diff --git a/ProjectLibrary/FormLibrary.cs b/ProjectLibrary/FormLibrary.cs index 1baf67b..7210948 100644 --- a/ProjectLibrary/FormLibrary.cs +++ b/ProjectLibrary/FormLibrary.cs @@ -71,5 +71,41 @@ namespace ProjectLibrary MessageBox.Show(ex.Message, "", MessageBoxButtons.OK, MessageBoxIcon.Error); } } + + private void DocReportToolStripMenuItem_Click(object sender, EventArgs e) + { + try + { + _container.Resolve().ShowDialog(); + } + catch (Exception ex) + { + MessageBox.Show(ex.Message, "", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + + private void BookReportToolStripMenuItem_Click(object sender, EventArgs e) + { + try + { + _container.Resolve().ShowDialog(); + } + catch (Exception ex) + { + MessageBox.Show(ex.Message, "", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + + private void OrderDistributionToolStripMenuItem_Click(object sender, EventArgs e) + { + try + { + _container.Resolve().ShowDialog(); + } + catch (Exception ex) + { + MessageBox.Show(ex.Message, "", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } } } diff --git a/ProjectLibrary/FormLibrary.resx b/ProjectLibrary/FormLibrary.resx index a0623c8..b48baf1 100644 --- a/ProjectLibrary/FormLibrary.resx +++ b/ProjectLibrary/FormLibrary.resx @@ -1,7 +1,7 @@  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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/ProjectLibrary/Forms/FDocReport.Designer.cs b/ProjectLibrary/Forms/FDocReport.Designer.cs new file mode 100644 index 0000000..5684d0d --- /dev/null +++ b/ProjectLibrary/Forms/FDocReport.Designer.cs @@ -0,0 +1,100 @@ +namespace ProjectLibrary.Forms +{ + partial class FDocReport + { + /// + /// 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() + { + checkBoxBooks = new CheckBox(); + checkBoxReaders = new CheckBox(); + checkBoxIncludeTicketExtensions = new CheckBox(); + buttonCreate = new Button(); + SuspendLayout(); + // + // checkBoxBooks + // + checkBoxBooks.AutoSize = true; + checkBoxBooks.Location = new Point(54, 34); + checkBoxBooks.Name = "checkBoxBooks"; + checkBoxBooks.Size = new Size(73, 24); + checkBoxBooks.TabIndex = 0; + checkBoxBooks.Text = "Книги"; + checkBoxBooks.UseVisualStyleBackColor = true; + // + // checkBoxReaders + // + checkBoxReaders.AutoSize = true; + checkBoxReaders.Location = new Point(54, 101); + checkBoxReaders.Name = "checkBoxReaders"; + checkBoxReaders.Size = new Size(95, 24); + checkBoxReaders.TabIndex = 1; + checkBoxReaders.Text = "Читатели"; + checkBoxReaders.UseVisualStyleBackColor = true; + // + // checkBoxIncludeTicketExtensions + // + checkBoxIncludeTicketExtensions.AutoSize = true; + checkBoxIncludeTicketExtensions.Location = new Point(54, 170); + checkBoxIncludeTicketExtensions.Name = "checkBoxIncludeTicketExtensions"; + checkBoxIncludeTicketExtensions.Size = new Size(114, 24); + checkBoxIncludeTicketExtensions.TabIndex = 2; + checkBoxIncludeTicketExtensions.Text = "Библиотеки"; + checkBoxIncludeTicketExtensions.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; + // + // FormDocReport + // + AutoScaleDimensions = new SizeF(8F, 20F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(484, 236); + Controls.Add(buttonCreate); + Controls.Add(checkBoxIncludeTicketExtensions); + Controls.Add(checkBoxReaders); + Controls.Add(checkBoxBooks); + Name = "FormDocReport"; + Text = "Выгрузка справочников"; + ResumeLayout(false); + PerformLayout(); + } + + #endregion + + private CheckBox checkBoxBooks; + private CheckBox checkBoxReaders; + private CheckBox checkBoxIncludeTicketExtensions; + private Button buttonCreate; + } +} \ No newline at end of file diff --git a/ProjectLibrary/Forms/FDocReport.cs b/ProjectLibrary/Forms/FDocReport.cs new file mode 100644 index 0000000..da03998 --- /dev/null +++ b/ProjectLibrary/Forms/FDocReport.cs @@ -0,0 +1,58 @@ +using ProjectLibrary.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 ProjectLibrary.Forms; + +public partial class FDocReport : Form +{ + private readonly IUnityContainer _container; + + public FDocReport(IUnityContainer container) + { + InitializeComponent(); + _container = container ?? throw new ArgumentNullException(nameof(container)); + } + + private void ButtonCreate_Click(object sender, EventArgs e) + { + try + { + if (!checkBoxBooks.Checked && !checkBoxReaders.Checked && !checkBoxIncludeTicketExtensions.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, checkBoxBooks.Checked, + checkBoxReaders.Checked, checkBoxIncludeTicketExtensions.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/ProjectLibrary/Forms/FDocReport.resx b/ProjectLibrary/Forms/FDocReport.resx new file mode 100644 index 0000000..8b2ff64 --- /dev/null +++ b/ProjectLibrary/Forms/FDocReport.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/ProjectLibrary/Forms/FOrder.Designer.cs b/ProjectLibrary/Forms/FOrder.Designer.cs index 19b91c3..330305d 100644 --- a/ProjectLibrary/Forms/FOrder.Designer.cs +++ b/ProjectLibrary/Forms/FOrder.Designer.cs @@ -28,9 +28,10 @@ buttonCancel_Click = new Button(); comboBox = new ComboBox(); dataGridViewBook = new DataGridView(); - Book = new DataGridViewComboBoxColumn(); dtpOrderDate = new DateTimePicker(); dtptxtReturnDate = new DateTimePicker(); + Book = new DataGridViewComboBoxColumn(); + ColumnCount = new DataGridViewTextBoxColumn(); ((System.ComponentModel.ISupportInitialize)dataGridViewBook).BeginInit(); SuspendLayout(); // @@ -81,7 +82,7 @@ // // buttonCancel_Click // - buttonCancel_Click.Location = new Point(232, 238); + buttonCancel_Click.Location = new Point(327, 238); buttonCancel_Click.Name = "buttonCancel_Click"; buttonCancel_Click.Size = new Size(100, 30); buttonCancel_Click.TabIndex = 11; @@ -92,19 +93,34 @@ // comboBox.Location = new Point(129, 108); comboBox.Name = "comboBox"; - comboBox.Size = new Size(203, 28); + comboBox.Size = new Size(298, 28); comboBox.TabIndex = 0; // // dataGridViewBook // dataGridViewBook.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; - dataGridViewBook.Columns.AddRange(new DataGridViewColumn[] { Book }); + dataGridViewBook.Columns.AddRange(new DataGridViewColumn[] { Book, ColumnCount }); dataGridViewBook.Location = new Point(129, 151); dataGridViewBook.Name = "dataGridViewBook"; dataGridViewBook.RowHeadersWidth = 51; - dataGridViewBook.Size = new Size(200, 81); + dataGridViewBook.Size = new Size(298, 81); dataGridViewBook.TabIndex = 12; // + // dtpOrderDate + // + dtpOrderDate.Enabled = false; + dtpOrderDate.Location = new Point(129, 20); + dtpOrderDate.Name = "dtpOrderDate"; + dtpOrderDate.Size = new Size(298, 27); + dtpOrderDate.TabIndex = 13; + // + // dtptxtReturnDate + // + dtptxtReturnDate.Location = new Point(129, 60); + dtptxtReturnDate.Name = "dtptxtReturnDate"; + dtptxtReturnDate.Size = new Size(298, 27); + dtptxtReturnDate.TabIndex = 14; + // // Book // Book.HeaderText = "Book"; @@ -112,24 +128,16 @@ Book.Name = "Book"; Book.Width = 125; // - // dtpOrderDate + // ColumnCount // - dtpOrderDate.Enabled = false; - dtpOrderDate.Location = new Point(129, 20); - dtpOrderDate.Name = "dtpOrderDate"; - dtpOrderDate.Size = new Size(203, 27); - dtpOrderDate.TabIndex = 13; - // - // dtptxtReturnDate - // - dtptxtReturnDate.Location = new Point(129, 60); - dtptxtReturnDate.Name = "dtptxtReturnDate"; - dtptxtReturnDate.Size = new Size(203, 27); - dtptxtReturnDate.TabIndex = 14; + ColumnCount.HeaderText = "Count"; + ColumnCount.MinimumWidth = 6; + ColumnCount.Name = "ColumnCount"; + ColumnCount.Width = 125; // // FOrder // - ClientSize = new Size(372, 332); + ClientSize = new Size(455, 294); Controls.Add(dtptxtReturnDate); Controls.Add(dtpOrderDate); Controls.Add(dataGridViewBook); @@ -150,8 +158,9 @@ private Button buttonCancel_Click; private ComboBox comboBox; private DataGridView dataGridViewBook; - private DataGridViewComboBoxColumn Book; private DateTimePicker dtpOrderDate; private DateTimePicker dtptxtReturnDate; + private DataGridViewComboBoxColumn Book; + private DataGridViewTextBoxColumn ColumnCount; } } diff --git a/ProjectLibrary/Forms/FOrder.cs b/ProjectLibrary/Forms/FOrder.cs index 99c9a78..7da78a2 100644 --- a/ProjectLibrary/Forms/FOrder.cs +++ b/ProjectLibrary/Forms/FOrder.cs @@ -34,7 +34,7 @@ namespace ProjectLibrary.Forms { continue; } - list.Add(Book_Orders.CreateEntity(0, Convert.ToInt32(row.Cells["Book"].Value))); + list.Add(Book_Orders.CreateEntity(0, Convert.ToInt32(row.Cells["Book"].Value), Convert.ToInt32(row.Cells["ColumnCount"].Value))); } return list; } diff --git a/ProjectLibrary/Forms/FOrder.resx b/ProjectLibrary/Forms/FOrder.resx index 9770c5a..7a1d51b 100644 --- a/ProjectLibrary/Forms/FOrder.resx +++ b/ProjectLibrary/Forms/FOrder.resx @@ -120,4 +120,7 @@ True + + True + \ No newline at end of file diff --git a/ProjectLibrary/Forms/FOrderDistributionReport.Designer.cs b/ProjectLibrary/Forms/FOrderDistributionReport.Designer.cs new file mode 100644 index 0000000..623add1 --- /dev/null +++ b/ProjectLibrary/Forms/FOrderDistributionReport.Designer.cs @@ -0,0 +1,109 @@ +namespace ProjectLibrary.Forms +{ + partial class FOrderDistributionReport + { + /// + /// 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; + // + // FormOrderDistributionReport + // + 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 = "FormOrderDistributionReport"; + Text = "FormInvoiceDistributionReport"; + ResumeLayout(false); + PerformLayout(); + } + + #endregion + + private Button buttonSelectFileName; + private Label labelFileName; + private Label label1; + private DateTimePicker dateTimePicker; + private Button buttonCreate; + } +} \ No newline at end of file diff --git a/ProjectLibrary/Forms/FOrderDistributionReport.cs b/ProjectLibrary/Forms/FOrderDistributionReport.cs new file mode 100644 index 0000000..1040d39 --- /dev/null +++ b/ProjectLibrary/Forms/FOrderDistributionReport.cs @@ -0,0 +1,65 @@ +using ProjectLibrary.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 ProjectLibrary.Forms; + +public partial class FOrderDistributionReport : Form +{ + private string _fileName = string.Empty; + + private readonly IUnityContainer _container; + + public FOrderDistributionReport(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/ProjectLibrary/Forms/FOrderDistributionReport.resx b/ProjectLibrary/Forms/FOrderDistributionReport.resx new file mode 100644 index 0000000..8b2ff64 --- /dev/null +++ b/ProjectLibrary/Forms/FOrderDistributionReport.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/ProjectLibrary/ProjectLibrary.csproj b/ProjectLibrary/ProjectLibrary.csproj index b94bfad..3cd7071 100644 --- a/ProjectLibrary/ProjectLibrary.csproj +++ b/ProjectLibrary/ProjectLibrary.csproj @@ -10,11 +10,13 @@ + + diff --git a/ProjectLibrary/Reports/ChartReport.cs b/ProjectLibrary/Reports/ChartReport.cs new file mode 100644 index 0000000..1e0e893 --- /dev/null +++ b/ProjectLibrary/Reports/ChartReport.cs @@ -0,0 +1,46 @@ +using Microsoft.Extensions.Logging; +using ProjectLibrary.Repositories; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProjectLibrary.Reports; + +public class ChartReport +{ + private readonly IOrderRepository _orderRepository; + private readonly ILogger _logger; + public ChartReport(IOrderRepository orderRepository, ILogger logger) + { + _orderRepository = orderRepository ?? throw new ArgumentNullException(nameof(orderRepository)); + _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 _orderRepository + .ReadOrders() + .Where(x => x.OrderDate.Date == dateTime.Date) + .GroupBy(x => x.BookOrders.First(y => y.OrderID == x.Id).BookID , (key, group) => new { ID = key, Count = group.Sum(y => y.BookOrders.First(z => z.OrderID == y.Id).Count) }) + .Select(x => (x.ID.ToString(), (double)x.Count)) + .ToList(); + } +} diff --git a/ProjectLibrary/Reports/DocReport.cs b/ProjectLibrary/Reports/DocReport.cs new file mode 100644 index 0000000..bf22e7d --- /dev/null +++ b/ProjectLibrary/Reports/DocReport.cs @@ -0,0 +1,88 @@ +using Microsoft.Extensions.Logging; +using ProjectLibrary.Repositores; +using ProjectLibrary.Repositories; +using ProjectLibrary.Repositories.Implementations; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProjectLibrary.Reports; + +public class DocReport +{ + private readonly IBookRepository _bookRepository; + private readonly IReaderRepository _readerRepository; + private readonly ITicketExtensionsRepository _ticketExtensionsRepository; + + private readonly ILogger _logger; + + public DocReport(IBookRepository bookRepository, IReaderRepository readerRepository, + ITicketExtensionsRepository ticketExtensionsRepository, ILogger logger) + { + _bookRepository = bookRepository ?? throw new ArgumentNullException(nameof(bookRepository)); + _readerRepository = readerRepository ?? throw new ArgumentNullException(nameof(readerRepository)); + _ticketExtensionsRepository = ticketExtensionsRepository ?? throw new ArgumentNullException(nameof(ticketExtensionsRepository)); + _logger = logger ?? throw new ArgumentNullException(nameof(logger)); + } + + public bool CreateDoc(string filePath, bool includeBooks, bool includeReaders, bool includeTicketExtensions) + { + try + { + var builder = new WordBuilder(filePath).AddHeader("Документ со справочниками"); + if (includeBooks) + { + builder.AddParagraph("Книги").AddTable([2400, 2400, 1200], GetBooks()); + } + if (includeReaders) + { + builder.AddParagraph("Читатели").AddTable([2400, 1200, 1200], GetReaders()); + } + if (includeTicketExtensions) + { + builder.AddParagraph("Библиотеки").AddTable([2400, 2400, 2400], GetTicketExtensions()); + } + builder.Build(); + return true; + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка при формировании документа"); + return false; + } + } + + private List GetBooks() + { + return [ + ["Автор", "Название", "Тип книги"], + .. _bookRepository + .ReadBooks() + .Select(x => new string[] { x.Author, x.Name, x.TypeBookID.ToString()}), + ]; + } + + + private List GetReaders() + { + return [ + ["ФИО читателя", "Билет читателя", "Дата регистрации"], + .. _readerRepository + .ReadReaders() + .Select(x => new string[] { x.Name, x.ReaderTicket.ToString(), x.RegistrationDateRT.ToString()}), + ]; + } + + + private List GetTicketExtensions() + { + return [ + ["ID Читателя", "Последняя дата обновления", "Следующая дата обновления"], + .. _ticketExtensionsRepository + .ReadTicketExtensions() + .Select(x => new string[] {x.ReaderID.ToString(), x.LastUpdateDate.ToString(), x.NextUpdateDate.ToString()}), + ]; + } +} diff --git a/ProjectLibrary/Reports/ExcelBuilder.cs b/ProjectLibrary/Reports/ExcelBuilder.cs new file mode 100644 index 0000000..7353e04 --- /dev/null +++ b/ProjectLibrary/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 ProjectLibrary.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.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" }, + 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/ProjectLibrary/Reports/PdfBuilder.cs b/ProjectLibrary/Reports/PdfBuilder.cs new file mode 100644 index 0000000..4f10d81 --- /dev/null +++ b/ProjectLibrary/Reports/PdfBuilder.cs @@ -0,0 +1,88 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Reflection.PortableExecutable; +using System.Text; +using System.Threading.Tasks; +using MigraDoc.DocumentObjectModel; +using MigraDoc.DocumentObjectModel.Shapes.Charts; +using MigraDoc.Rendering; + +namespace ProjectLibrary.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/ProjectLibrary/Reports/TableReport.cs b/ProjectLibrary/Reports/TableReport.cs new file mode 100644 index 0000000..78e94eb --- /dev/null +++ b/ProjectLibrary/Reports/TableReport.cs @@ -0,0 +1,66 @@ +using Microsoft.Extensions.Logging; +using ProjectLibrary.Entities; +using ProjectLibrary.Repositories; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ProjectLibrary.Reports; + +public class TableReport +{ + private readonly IOrderRepository _orderRepository; + private readonly ILogger _logger; + internal static readonly string[] item = ["Id заказа","Дата заказа", "Дата возврата", "Книга", "Количество"]; + + + public TableReport(IOrderRepository orderRepository, ILogger logger) + { + _orderRepository = orderRepository ?? throw new ArgumentNullException(nameof(orderRepository)); + _logger = logger ?? throw new ArgumentNullException(nameof(logger)); + } + + public bool CreateTable(string filePath, DateTime startDate, DateTime endDate) + { + try + { + new ExcelBuilder(filePath) + .AddHeader("Сводка по движению книг", 0, 5) + .AddParagraph("за период", 0) + .AddTable([10, 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 = _orderRepository + .ReadOrders() + .Where(x => x.OrderDate >= startDate && x.OrderDate <= endDate && x.BookOrders.Any(y => y.OrderID == x.Id)) + .Select(x => new + { + x.Id, + DateOrder = x.OrderDate, + DateReturn = x.ReturnDate, + Book = (int?)x.BookOrders.First(y => y.OrderID == x.Id).BookID, + Count = (int?)x.BookOrders.First(y => y.OrderID == x.Id).Count + }) + .OrderBy(x => x.DateOrder); + return + new List() { item } + .Union( + data + .Select(x => new string[] { x.Id.ToString(), x.DateOrder.ToString(), x.DateReturn.ToString(), + x.Book?.ToString() ?? string.Empty, x.Count?.ToString() ?? string.Empty})) + .Union([["Всего", "", "", "", data.Sum(x => x.Count ?? 0).ToString()]]) + .ToList(); + } +} diff --git a/ProjectLibrary/Reports/WordBuilder.cs b/ProjectLibrary/Reports/WordBuilder.cs new file mode 100644 index 0000000..4d10c8f --- /dev/null +++ b/ProjectLibrary/Reports/WordBuilder.cs @@ -0,0 +1,93 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using DocumentFormat.OpenXml; +using DocumentFormat.OpenXml.Packaging; +using DocumentFormat.OpenXml.Wordprocessing; + +namespace ProjectLibrary.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/ProjectLibrary/Repositores/Implementations/OrderRepository.cs b/ProjectLibrary/Repositores/Implementations/OrderRepository.cs index 5499f20..b839c99 100644 --- a/ProjectLibrary/Repositores/Implementations/OrderRepository.cs +++ b/ProjectLibrary/Repositores/Implementations/OrderRepository.cs @@ -9,6 +9,7 @@ using System.Transactions; using System.Data.Common; using ProjectLibrary.Entites; using ProjectLibrary.Repositores; +using Unity; namespace ProjectLibrary.Repositories.Implementations { @@ -45,9 +46,9 @@ namespace ProjectLibrary.Repositories.Implementations foreach (var bookId in order.BookOrders) // Предполагается, что Order.BookOrders содержит список ID книг { var queryInsertBookOrder = @" - INSERT INTO Book_Orders (BookID, OrderID) - VALUES (@BookID, @OrderID)"; - connection.Execute(queryInsertBookOrder, new { bookId.BookID, orderId }, transaction); + INSERT INTO Book_Orders (BookID, OrderID, Count) + VALUES (@BookID, @OrderID, @Count)"; + connection.Execute(queryInsertBookOrder, new { bookId.BookID, orderId, bookId.Count }, transaction); } transaction.Commit(); _logger.LogInformation("Заказ успешно добавлен с ID={OrderId}", orderId); @@ -113,10 +114,14 @@ namespace ProjectLibrary.Repositories.Implementations try { using var connection = new NpgsqlConnection(_connectionString.ConnectionString); - var querySelect = @"SELECT * FROM Orders"; - var order = connection.Query(querySelect); - _logger.LogDebug("Полученные объекты: {json}", JsonConvert.SerializeObject(order)); - return order; + var querySelect = @"SELECT ord.*, bo.BookId, bo.Count + FROM Orders ord + INNER JOIN Book_Orders bo ON bo.orderId = ord.Id"; + var order = connection.Query(querySelect); + _logger.LogDebug("Получ енные объекты: {json}", JsonConvert.SerializeObject(order)); + return order.GroupBy(x => x.Id, y => y, + (key, value) => Orders.CreateEntity(value.First(), + value.Select(z => Book_Orders.CreateEntity(z.Id, z.BookID, z.Count)))).ToList(); } catch (Exception ex) {