ИСЭбд-21 Мосевнин А.М. LabWork_3 #3
@ -10,13 +10,15 @@ namespace ProjectLibrary.Entites
|
|||||||
{
|
{
|
||||||
public int BookID { get; private set; }
|
public int BookID { get; private set; }
|
||||||
public int OrderID { 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
|
return new Book_Orders
|
||||||
{
|
{
|
||||||
BookID = bookID,
|
BookID = bookID,
|
||||||
OrderID = orderID
|
OrderID = orderID,
|
||||||
|
Count = count
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
using Microsoft.VisualBasic;
|
using DocumentFormat.OpenXml.Office2010.Excel;
|
||||||
|
using Microsoft.VisualBasic;
|
||||||
|
using ProjectLibrary.Entities;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
@ -31,5 +33,17 @@ namespace ProjectLibrary.Entites
|
|||||||
BookOrders = bookOrders
|
BookOrders = bookOrders
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static Orders CreateEntity(TempBookOrders tempBookOrders, IEnumerable<Book_Orders> bookOrders)
|
||||||
|
{
|
||||||
|
return new Orders
|
||||||
|
{
|
||||||
|
Id = tempBookOrders.Id,
|
||||||
|
OrderDate = tempBookOrders.OrderDate,
|
||||||
|
ReturnDate = tempBookOrders.ReturnDate,
|
||||||
|
ReaderID = tempBookOrders.ReaderID,
|
||||||
|
BookOrders = bookOrders
|
||||||
|
};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
19
ProjectLibrary/Entites/TempBookOrders.cs
Normal file
19
ProjectLibrary/Entites/TempBookOrders.cs
Normal file
@ -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; }
|
||||||
|
|
||||||
|
|
||||||
|
}
|
20
ProjectLibrary/FormLibrary.Designer.cs
generated
20
ProjectLibrary/FormLibrary.Designer.cs
generated
@ -38,6 +38,8 @@
|
|||||||
заказатьКнигиToolStripMenuItem = new ToolStripMenuItem();
|
заказатьКнигиToolStripMenuItem = new ToolStripMenuItem();
|
||||||
отчетыToolStripMenuItem = new ToolStripMenuItem();
|
отчетыToolStripMenuItem = new ToolStripMenuItem();
|
||||||
DocReportToolStripMenuItem = new ToolStripMenuItem();
|
DocReportToolStripMenuItem = new ToolStripMenuItem();
|
||||||
|
bookReportToolStripMenuItem = new ToolStripMenuItem();
|
||||||
|
OrderDistributionToolStripMenuItem = new ToolStripMenuItem();
|
||||||
menuStrip1.SuspendLayout();
|
menuStrip1.SuspendLayout();
|
||||||
SuspendLayout();
|
SuspendLayout();
|
||||||
//
|
//
|
||||||
@ -104,7 +106,7 @@
|
|||||||
//
|
//
|
||||||
// отчетыToolStripMenuItem
|
// отчетыToolStripMenuItem
|
||||||
//
|
//
|
||||||
отчетыToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { DocReportToolStripMenuItem });
|
отчетыToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { DocReportToolStripMenuItem, bookReportToolStripMenuItem, OrderDistributionToolStripMenuItem });
|
||||||
отчетыToolStripMenuItem.Name = "отчетыToolStripMenuItem";
|
отчетыToolStripMenuItem.Name = "отчетыToolStripMenuItem";
|
||||||
отчетыToolStripMenuItem.Size = new Size(73, 24);
|
отчетыToolStripMenuItem.Size = new Size(73, 24);
|
||||||
отчетыToolStripMenuItem.Text = "Отчеты";
|
отчетыToolStripMenuItem.Text = "Отчеты";
|
||||||
@ -116,6 +118,20 @@
|
|||||||
DocReportToolStripMenuItem.Text = "Документ со справочниками";
|
DocReportToolStripMenuItem.Text = "Документ со справочниками";
|
||||||
DocReportToolStripMenuItem.Click += DocReportToolStripMenuItem_Click;
|
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
|
// FormLibrary
|
||||||
//
|
//
|
||||||
AutoScaleDimensions = new SizeF(8F, 20F);
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
||||||
@ -146,5 +162,7 @@
|
|||||||
private ToolStripMenuItem библиотекиToolStripMenuItem;
|
private ToolStripMenuItem библиотекиToolStripMenuItem;
|
||||||
private ToolStripMenuItem заказатьКнигиToolStripMenuItem;
|
private ToolStripMenuItem заказатьКнигиToolStripMenuItem;
|
||||||
private ToolStripMenuItem DocReportToolStripMenuItem;
|
private ToolStripMenuItem DocReportToolStripMenuItem;
|
||||||
|
private ToolStripMenuItem bookReportToolStripMenuItem;
|
||||||
|
private ToolStripMenuItem OrderDistributionToolStripMenuItem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -76,7 +76,31 @@ namespace ProjectLibrary
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
_container.Resolve<Forms.FormDocReport>().ShowDialog();
|
_container.Resolve<Forms.FDocReport>().ShowDialog();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
MessageBox.Show(ex.Message, "Îøèáêà", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void BookReportToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
_container.Resolve<Forms.FBookReport>().ShowDialog();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
MessageBox.Show(ex.Message, "Îøèáêà", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void OrderDistributionToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
_container.Resolve<Forms.FOrderDistributionReport>().ShowDialog();
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
142
ProjectLibrary/Forms/FBookReport.Designer.cs
generated
Normal file
142
ProjectLibrary/Forms/FBookReport.Designer.cs
generated
Normal file
@ -0,0 +1,142 @@
|
|||||||
|
namespace ProjectLibrary.Forms
|
||||||
|
{
|
||||||
|
partial class FBookReport
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Required designer variable.
|
||||||
|
/// </summary>
|
||||||
|
private System.ComponentModel.IContainer components = null;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Clean up any resources being used.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||||
|
protected override void Dispose(bool disposing)
|
||||||
|
{
|
||||||
|
if (disposing && (components != null))
|
||||||
|
{
|
||||||
|
components.Dispose();
|
||||||
|
}
|
||||||
|
base.Dispose(disposing);
|
||||||
|
}
|
||||||
|
|
||||||
|
#region Windows Form Designer generated code
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Required method for Designer support - do not modify
|
||||||
|
/// the contents of this method with the code editor.
|
||||||
|
/// </summary>
|
||||||
|
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, 84);
|
||||||
|
label3.Name = "label3";
|
||||||
|
label3.Size = new Size(97, 20);
|
||||||
|
label3.TabIndex = 2;
|
||||||
|
label3.Text = "Дата начала:";
|
||||||
|
//
|
||||||
|
// label4
|
||||||
|
//
|
||||||
|
label4.AutoSize = true;
|
||||||
|
label4.Location = new Point(22, 135);
|
||||||
|
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, 84);
|
||||||
|
dateTimePickerStartDate.Name = "dateTimePickerStartDate";
|
||||||
|
dateTimePickerStartDate.Size = new Size(181, 27);
|
||||||
|
dateTimePickerStartDate.TabIndex = 5;
|
||||||
|
//
|
||||||
|
// dateTimePickerEndDate
|
||||||
|
//
|
||||||
|
dateTimePickerEndDate.Location = new Point(188, 130);
|
||||||
|
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, 191);
|
||||||
|
buttonMakeReport.Name = "buttonMakeReport";
|
||||||
|
buttonMakeReport.Size = new Size(347, 29);
|
||||||
|
buttonMakeReport.TabIndex = 9;
|
||||||
|
buttonMakeReport.Text = "Сформировать";
|
||||||
|
buttonMakeReport.UseVisualStyleBackColor = false;
|
||||||
|
buttonMakeReport.Click += ButtonMakeReport_Click;
|
||||||
|
//
|
||||||
|
// FBookReport
|
||||||
|
//
|
||||||
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
||||||
|
AutoScaleMode = AutoScaleMode.Font;
|
||||||
|
ClientSize = new Size(409, 262);
|
||||||
|
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 = "FBookReport";
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
}
|
66
ProjectLibrary/Forms/FBookReport.cs
Normal file
66
ProjectLibrary/Forms/FBookReport.cs
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
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 FBookReport : Form
|
||||||
|
{
|
||||||
|
IUnityContainer _container;
|
||||||
|
public FBookReport(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<TableReport>().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);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,6 +1,6 @@
|
|||||||
namespace ProjectLibrary.Forms
|
namespace ProjectLibrary.Forms
|
||||||
{
|
{
|
||||||
partial class FormDocReport
|
partial class FDocReport
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Required designer variable.
|
/// Required designer variable.
|
@ -12,11 +12,11 @@ using Unity;
|
|||||||
|
|
||||||
namespace ProjectLibrary.Forms;
|
namespace ProjectLibrary.Forms;
|
||||||
|
|
||||||
public partial class FormDocReport : Form
|
public partial class FDocReport : Form
|
||||||
{
|
{
|
||||||
private readonly IUnityContainer _container;
|
private readonly IUnityContainer _container;
|
||||||
|
|
||||||
public FormDocReport(IUnityContainer container)
|
public FDocReport(IUnityContainer container)
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
_container = container ?? throw new ArgumentNullException(nameof(container));
|
_container = container ?? throw new ArgumentNullException(nameof(container));
|
120
ProjectLibrary/Forms/FDocReport.resx
Normal file
120
ProjectLibrary/Forms/FDocReport.resx
Normal file
@ -0,0 +1,120 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
</root>
|
49
ProjectLibrary/Forms/FOrder.Designer.cs
generated
49
ProjectLibrary/Forms/FOrder.Designer.cs
generated
@ -28,9 +28,10 @@
|
|||||||
buttonCancel_Click = new Button();
|
buttonCancel_Click = new Button();
|
||||||
comboBox = new ComboBox();
|
comboBox = new ComboBox();
|
||||||
dataGridViewBook = new DataGridView();
|
dataGridViewBook = new DataGridView();
|
||||||
Book = new DataGridViewComboBoxColumn();
|
|
||||||
dtpOrderDate = new DateTimePicker();
|
dtpOrderDate = new DateTimePicker();
|
||||||
dtptxtReturnDate = new DateTimePicker();
|
dtptxtReturnDate = new DateTimePicker();
|
||||||
|
Book = new DataGridViewComboBoxColumn();
|
||||||
|
ColumnCount = new DataGridViewTextBoxColumn();
|
||||||
((System.ComponentModel.ISupportInitialize)dataGridViewBook).BeginInit();
|
((System.ComponentModel.ISupportInitialize)dataGridViewBook).BeginInit();
|
||||||
SuspendLayout();
|
SuspendLayout();
|
||||||
//
|
//
|
||||||
@ -81,7 +82,7 @@
|
|||||||
//
|
//
|
||||||
// buttonCancel_Click
|
// buttonCancel_Click
|
||||||
//
|
//
|
||||||
buttonCancel_Click.Location = new Point(232, 238);
|
buttonCancel_Click.Location = new Point(327, 238);
|
||||||
buttonCancel_Click.Name = "buttonCancel_Click";
|
buttonCancel_Click.Name = "buttonCancel_Click";
|
||||||
buttonCancel_Click.Size = new Size(100, 30);
|
buttonCancel_Click.Size = new Size(100, 30);
|
||||||
buttonCancel_Click.TabIndex = 11;
|
buttonCancel_Click.TabIndex = 11;
|
||||||
@ -92,19 +93,34 @@
|
|||||||
//
|
//
|
||||||
comboBox.Location = new Point(129, 108);
|
comboBox.Location = new Point(129, 108);
|
||||||
comboBox.Name = "comboBox";
|
comboBox.Name = "comboBox";
|
||||||
comboBox.Size = new Size(203, 28);
|
comboBox.Size = new Size(298, 28);
|
||||||
comboBox.TabIndex = 0;
|
comboBox.TabIndex = 0;
|
||||||
//
|
//
|
||||||
// dataGridViewBook
|
// dataGridViewBook
|
||||||
//
|
//
|
||||||
dataGridViewBook.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
dataGridViewBook.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
||||||
dataGridViewBook.Columns.AddRange(new DataGridViewColumn[] { Book });
|
dataGridViewBook.Columns.AddRange(new DataGridViewColumn[] { Book, ColumnCount });
|
||||||
dataGridViewBook.Location = new Point(129, 151);
|
dataGridViewBook.Location = new Point(129, 151);
|
||||||
dataGridViewBook.Name = "dataGridViewBook";
|
dataGridViewBook.Name = "dataGridViewBook";
|
||||||
dataGridViewBook.RowHeadersWidth = 51;
|
dataGridViewBook.RowHeadersWidth = 51;
|
||||||
dataGridViewBook.Size = new Size(200, 81);
|
dataGridViewBook.Size = new Size(298, 81);
|
||||||
dataGridViewBook.TabIndex = 12;
|
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
|
||||||
//
|
//
|
||||||
Book.HeaderText = "Book";
|
Book.HeaderText = "Book";
|
||||||
@ -112,24 +128,16 @@
|
|||||||
Book.Name = "Book";
|
Book.Name = "Book";
|
||||||
Book.Width = 125;
|
Book.Width = 125;
|
||||||
//
|
//
|
||||||
// dtpOrderDate
|
// ColumnCount
|
||||||
//
|
//
|
||||||
dtpOrderDate.Enabled = false;
|
ColumnCount.HeaderText = "Count";
|
||||||
dtpOrderDate.Location = new Point(129, 20);
|
ColumnCount.MinimumWidth = 6;
|
||||||
dtpOrderDate.Name = "dtpOrderDate";
|
ColumnCount.Name = "ColumnCount";
|
||||||
dtpOrderDate.Size = new Size(203, 27);
|
ColumnCount.Width = 125;
|
||||||
dtpOrderDate.TabIndex = 13;
|
|
||||||
//
|
|
||||||
// dtptxtReturnDate
|
|
||||||
//
|
|
||||||
dtptxtReturnDate.Location = new Point(129, 60);
|
|
||||||
dtptxtReturnDate.Name = "dtptxtReturnDate";
|
|
||||||
dtptxtReturnDate.Size = new Size(203, 27);
|
|
||||||
dtptxtReturnDate.TabIndex = 14;
|
|
||||||
//
|
//
|
||||||
// FOrder
|
// FOrder
|
||||||
//
|
//
|
||||||
ClientSize = new Size(372, 332);
|
ClientSize = new Size(455, 294);
|
||||||
Controls.Add(dtptxtReturnDate);
|
Controls.Add(dtptxtReturnDate);
|
||||||
Controls.Add(dtpOrderDate);
|
Controls.Add(dtpOrderDate);
|
||||||
Controls.Add(dataGridViewBook);
|
Controls.Add(dataGridViewBook);
|
||||||
@ -150,8 +158,9 @@
|
|||||||
private Button buttonCancel_Click;
|
private Button buttonCancel_Click;
|
||||||
private ComboBox comboBox;
|
private ComboBox comboBox;
|
||||||
private DataGridView dataGridViewBook;
|
private DataGridView dataGridViewBook;
|
||||||
private DataGridViewComboBoxColumn Book;
|
|
||||||
private DateTimePicker dtpOrderDate;
|
private DateTimePicker dtpOrderDate;
|
||||||
private DateTimePicker dtptxtReturnDate;
|
private DateTimePicker dtptxtReturnDate;
|
||||||
|
private DataGridViewComboBoxColumn Book;
|
||||||
|
private DataGridViewTextBoxColumn ColumnCount;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -34,7 +34,7 @@ namespace ProjectLibrary.Forms
|
|||||||
{
|
{
|
||||||
continue;
|
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;
|
return list;
|
||||||
}
|
}
|
||||||
|
@ -120,4 +120,7 @@
|
|||||||
<metadata name="Book.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
<metadata name="Book.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
<value>True</value>
|
<value>True</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
<metadata name="ColumnCount.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
|
<value>True</value>
|
||||||
|
</metadata>
|
||||||
</root>
|
</root>
|
109
ProjectLibrary/Forms/FOrderDistributionReport.Designer.cs
generated
Normal file
109
ProjectLibrary/Forms/FOrderDistributionReport.Designer.cs
generated
Normal file
@ -0,0 +1,109 @@
|
|||||||
|
namespace ProjectLibrary.Forms
|
||||||
|
{
|
||||||
|
partial class FOrderDistributionReport
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Required designer variable.
|
||||||
|
/// </summary>
|
||||||
|
private System.ComponentModel.IContainer components = null;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Clean up any resources being used.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||||
|
protected override void Dispose(bool disposing)
|
||||||
|
{
|
||||||
|
if (disposing && (components != null))
|
||||||
|
{
|
||||||
|
components.Dispose();
|
||||||
|
}
|
||||||
|
base.Dispose(disposing);
|
||||||
|
}
|
||||||
|
|
||||||
|
#region Windows Form Designer generated code
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Required method for Designer support - do not modify
|
||||||
|
/// the contents of this method with the code editor.
|
||||||
|
/// </summary>
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
}
|
65
ProjectLibrary/Forms/FOrderDistributionReport.cs
Normal file
65
ProjectLibrary/Forms/FOrderDistributionReport.cs
Normal file
@ -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<ChartReport>().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);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
120
ProjectLibrary/Forms/FOrderDistributionReport.resx
Normal file
120
ProjectLibrary/Forms/FOrderDistributionReport.resx
Normal file
@ -0,0 +1,120 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
</root>
|
@ -16,6 +16,7 @@
|
|||||||
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.0" />
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.0" />
|
||||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
||||||
<PackageReference Include="Npgsql" Version="9.0.1" />
|
<PackageReference Include="Npgsql" Version="9.0.1" />
|
||||||
|
<PackageReference Include="PdfSharp.MigraDoc.Standard" Version="1.51.15" />
|
||||||
<PackageReference Include="Serilog" Version="4.1.0" />
|
<PackageReference Include="Serilog" Version="4.1.0" />
|
||||||
<PackageReference Include="Serilog.Extensions.Logging" Version="8.0.0" />
|
<PackageReference Include="Serilog.Extensions.Logging" Version="8.0.0" />
|
||||||
<PackageReference Include="Serilog.Settings.Configuration" Version="8.0.4" />
|
<PackageReference Include="Serilog.Settings.Configuration" Version="8.0.4" />
|
||||||
|
46
ProjectLibrary/Reports/ChartReport.cs
Normal file
46
ProjectLibrary/Reports/ChartReport.cs
Normal file
@ -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<ChartReport> _logger;
|
||||||
|
public ChartReport(IOrderRepository orderRepository, ILogger<ChartReport> 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();
|
||||||
|
}
|
||||||
|
}
|
88
ProjectLibrary/Reports/PdfBuilder.cs
Normal file
88
ProjectLibrary/Reports/PdfBuilder.cs
Normal file
@ -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;
|
||||||
|
}
|
||||||
|
}
|
66
ProjectLibrary/Reports/TableReport.cs
Normal file
66
ProjectLibrary/Reports/TableReport.cs
Normal file
@ -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<TableReport> _logger;
|
||||||
|
internal static readonly string[] item = ["Id заказа", "Книга", "Дата заказа", "Дата возврата", "Количество"];
|
||||||
|
|
||||||
|
|
||||||
|
public TableReport(IOrderRepository orderRepository, ILogger<TableReport> 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<string[]> 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<string[]>() { 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();
|
||||||
|
}
|
||||||
|
}
|
@ -9,6 +9,7 @@ using System.Transactions;
|
|||||||
using System.Data.Common;
|
using System.Data.Common;
|
||||||
using ProjectLibrary.Entites;
|
using ProjectLibrary.Entites;
|
||||||
using ProjectLibrary.Repositores;
|
using ProjectLibrary.Repositores;
|
||||||
|
using Unity;
|
||||||
|
|
||||||
namespace ProjectLibrary.Repositories.Implementations
|
namespace ProjectLibrary.Repositories.Implementations
|
||||||
{
|
{
|
||||||
@ -45,9 +46,9 @@ namespace ProjectLibrary.Repositories.Implementations
|
|||||||
foreach (var bookId in order.BookOrders) // Предполагается, что Order.BookOrders содержит список ID книг
|
foreach (var bookId in order.BookOrders) // Предполагается, что Order.BookOrders содержит список ID книг
|
||||||
{
|
{
|
||||||
var queryInsertBookOrder = @"
|
var queryInsertBookOrder = @"
|
||||||
INSERT INTO Book_Orders (BookID, OrderID)
|
INSERT INTO Book_Orders (BookID, OrderID, Count)
|
||||||
VALUES (@BookID, @OrderID)";
|
VALUES (@BookID, @OrderID, @Count)";
|
||||||
connection.Execute(queryInsertBookOrder, new { bookId.BookID, orderId }, transaction);
|
connection.Execute(queryInsertBookOrder, new { bookId.BookID, orderId, bookId.Count }, transaction);
|
||||||
}
|
}
|
||||||
transaction.Commit();
|
transaction.Commit();
|
||||||
_logger.LogInformation("Заказ успешно добавлен с ID={OrderId}", orderId);
|
_logger.LogInformation("Заказ успешно добавлен с ID={OrderId}", orderId);
|
||||||
@ -113,10 +114,14 @@ namespace ProjectLibrary.Repositories.Implementations
|
|||||||
try
|
try
|
||||||
{
|
{
|
||||||
using var connection = new NpgsqlConnection(_connectionString.ConnectionString);
|
using var connection = new NpgsqlConnection(_connectionString.ConnectionString);
|
||||||
var querySelect = @"SELECT * FROM Orders";
|
var querySelect = @"SELECT ord.*, bo.BookId, bo.Count
|
||||||
var order = connection.Query<Orders>(querySelect);
|
FROM Orders ord
|
||||||
_logger.LogDebug("Полученные объекты: {json}", JsonConvert.SerializeObject(order));
|
INNER JOIN Book_Orders bo ON bo.orderId = ord.Id";
|
||||||
return order;
|
var order = connection.Query<TempBookOrders>(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)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user
Заголовок формы оформлен неверно