Лаба 3 готова и сдана

This commit is contained in:
Vladislave 2024-12-22 19:50:59 +03:00
parent 6fef18b5bc
commit b91e0c7745
21 changed files with 1538 additions and 118 deletions

View File

@ -0,0 +1,16 @@
namespace ProjectTransportation.Entities;
public class TempStartingShiftEmployee
{
public int Starting_shift_id { get; private set; }
public int Employee_id { get; private set; }
public int Route_list_id { get; private set; }
public int Bus_id { get; private set; }
public DateTime Date { get; private set; }
public int Work_time { get; private set; }
}

View File

@ -15,15 +15,28 @@ public class StartingShift
public IEnumerable<StartingShiftEmployee> Starting_shift_employees { get; private set; } = []; public IEnumerable<StartingShiftEmployee> Starting_shift_employees { get; private set; } = [];
public static StartingShift CreateOperation(int id, int routeListId, int busId, public static StartingShift CreateOperation(int id, int routeListId, int busId,
IEnumerable<StartingShiftEmployee> startingShiftEmployees, DateTime date) IEnumerable<StartingShiftEmployee> startingShiftEmployees)
{ {
return new StartingShift() return new StartingShift()
{ {
Id = id, Id = id,
Date = date, Date = DateTime.Now,
Route_list_id = routeListId, Route_list_id = routeListId,
Bus_id = busId, Bus_id = busId,
Starting_shift_employees = startingShiftEmployees Starting_shift_employees = startingShiftEmployees
}; };
} }
public static StartingShift CreateOperation(TempStartingShiftEmployee tempStartingShiftEmployee,
IEnumerable<StartingShiftEmployee> startingShiftEmployee)
{
return new StartingShift
{
Id = tempStartingShiftEmployee.Starting_shift_id,
Date = tempStartingShiftEmployee.Date,
Route_list_id = tempStartingShiftEmployee.Route_list_id,
Bus_id = tempStartingShiftEmployee.Bus_id,
Starting_shift_employees = startingShiftEmployee
};
}
} }

View File

@ -1,6 +1,5 @@
using static System.Net.Mime.MediaTypeNames; using DocumentFormat.OpenXml.Spreadsheet;
using System.Windows.Forms; using DocumentFormat.OpenXml.Wordprocessing;
using System.Xml.Linq;
namespace ProjectTransportation namespace ProjectTransportation
{ {
@ -41,6 +40,9 @@ namespace ProjectTransportation
StartingShiftsToolStripMenuItem = new ToolStripMenuItem(); StartingShiftsToolStripMenuItem = new ToolStripMenuItem();
GoToServicesToolStripMenuItem = new ToolStripMenuItem(); GoToServicesToolStripMenuItem = new ToolStripMenuItem();
отчётыToolStripMenuItem = new ToolStripMenuItem(); отчётыToolStripMenuItem = new ToolStripMenuItem();
directoryReportToolStripMenuItem = new ToolStripMenuItem();
busesReportToolStripMenuItem = new ToolStripMenuItem();
serviceReportToolStripMenuItem = new ToolStripMenuItem();
menuStrip1.SuspendLayout(); menuStrip1.SuspendLayout();
SuspendLayout(); SuspendLayout();
// //
@ -50,8 +52,7 @@ namespace ProjectTransportation
menuStrip1.Items.AddRange(new ToolStripItem[] { справочникиToolStripMenuItem, операцииToolStripMenuItem, отчётыToolStripMenuItem }); menuStrip1.Items.AddRange(new ToolStripItem[] { справочникиToolStripMenuItem, операцииToolStripMenuItem, отчётыToolStripMenuItem });
menuStrip1.Location = new Point(0, 0); menuStrip1.Location = new Point(0, 0);
menuStrip1.Name = "menuStrip1"; menuStrip1.Name = "menuStrip1";
menuStrip1.Padding = new Padding(4, 1, 0, 1); menuStrip1.Size = new Size(976, 38);
menuStrip1.Size = new Size(739, 26);
menuStrip1.TabIndex = 0; menuStrip1.TabIndex = 0;
menuStrip1.Text = "menuStrip1"; menuStrip1.Text = "menuStrip1";
// //
@ -59,27 +60,27 @@ namespace ProjectTransportation
// //
справочникиToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { EmployeesToolStripMenuItem, BusesToolStripMenuItem, RouteListsToolStripMenuItem }); справочникиToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { EmployeesToolStripMenuItem, BusesToolStripMenuItem, RouteListsToolStripMenuItem });
справочникиToolStripMenuItem.Name = "справочникиToolStripMenuItem"; справочникиToolStripMenuItem.Name = "справочникиToolStripMenuItem";
справочникиToolStripMenuItem.Size = new Size(117, 24); справочникиToolStripMenuItem.Size = new Size(160, 34);
справочникиToolStripMenuItem.Text = "Справочники"; справочникиToolStripMenuItem.Text = "Справочники";
// //
// EmployeesToolStripMenuItem // EmployeesToolStripMenuItem
// //
EmployeesToolStripMenuItem.Name = "EmployeesToolStripMenuItem"; EmployeesToolStripMenuItem.Name = "EmployeesToolStripMenuItem";
EmployeesToolStripMenuItem.Size = new Size(167, 26); EmployeesToolStripMenuItem.Size = new Size(236, 40);
EmployeesToolStripMenuItem.Text = "Работники"; EmployeesToolStripMenuItem.Text = "Работники";
EmployeesToolStripMenuItem.Click += EmployeesToolStripMenuItem_Click; EmployeesToolStripMenuItem.Click += EmployeesToolStripMenuItem_Click;
// //
// BusesToolStripMenuItem // BusesToolStripMenuItem
// //
BusesToolStripMenuItem.Name = "BusesToolStripMenuItem"; BusesToolStripMenuItem.Name = "BusesToolStripMenuItem";
BusesToolStripMenuItem.Size = new Size(167, 26); BusesToolStripMenuItem.Size = new Size(236, 40);
BusesToolStripMenuItem.Text = "Автобусы"; BusesToolStripMenuItem.Text = "Автобусы";
BusesToolStripMenuItem.Click += BusesToolStripMenuItem_Click; BusesToolStripMenuItem.Click += BusesToolStripMenuItem_Click;
// //
// RouteListsToolStripMenuItem // RouteListsToolStripMenuItem
// //
RouteListsToolStripMenuItem.Name = "RouteListsToolStripMenuItem"; RouteListsToolStripMenuItem.Name = "RouteListsToolStripMenuItem";
RouteListsToolStripMenuItem.Size = new Size(167, 26); RouteListsToolStripMenuItem.Size = new Size(236, 40);
RouteListsToolStripMenuItem.Text = "Маршруты"; RouteListsToolStripMenuItem.Text = "Маршруты";
RouteListsToolStripMenuItem.Click += RouteListsToolStripMenuItem_Click; RouteListsToolStripMenuItem.Click += RouteListsToolStripMenuItem_Click;
// //
@ -87,40 +88,64 @@ namespace ProjectTransportation
// //
операцииToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { StartingShiftsToolStripMenuItem, GoToServicesToolStripMenuItem }); операцииToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { StartingShiftsToolStripMenuItem, GoToServicesToolStripMenuItem });
операцииToolStripMenuItem.Name = "операцииToolStripMenuItem"; операцииToolStripMenuItem.Name = "операцииToolStripMenuItem";
операцииToolStripMenuItem.Size = new Size(95, 24); операцииToolStripMenuItem.Size = new Size(130, 34);
операцииToolStripMenuItem.Text = "Операции"; операцииToolStripMenuItem.Text = "Операции";
// //
// StartingShiftsToolStripMenuItem // StartingShiftsToolStripMenuItem
// //
StartingShiftsToolStripMenuItem.Name = "StartingShiftsToolStripMenuItem"; StartingShiftsToolStripMenuItem.Name = "StartingShiftsToolStripMenuItem";
StartingShiftsToolStripMenuItem.Size = new Size(224, 26); StartingShiftsToolStripMenuItem.Size = new Size(314, 40);
StartingShiftsToolStripMenuItem.Text = "Начало смены"; StartingShiftsToolStripMenuItem.Text = "Начало смены";
StartingShiftsToolStripMenuItem.Click += StartingShiftsToolStripMenuItem_Click; StartingShiftsToolStripMenuItem.Click += StartingShiftsToolStripMenuItem_Click;
// //
// GoToServicesToolStripMenuItem // GoToServicesToolStripMenuItem
// //
GoToServicesToolStripMenuItem.Name = "GoToServicesToolStripMenuItem"; GoToServicesToolStripMenuItem.Name = "GoToServicesToolStripMenuItem";
GoToServicesToolStripMenuItem.Size = new Size(224, 26); GoToServicesToolStripMenuItem.Size = new Size(314, 40);
GoToServicesToolStripMenuItem.Text = "Тех. обслуживание"; GoToServicesToolStripMenuItem.Text = "Тех. обслуживание";
GoToServicesToolStripMenuItem.Click += GoToServicesToolStripMenuItem_Click; GoToServicesToolStripMenuItem.Click += GoToServicesToolStripMenuItem_Click;
// //
// отчётыToolStripMenuItem // отчётыToolStripMenuItem
// //
отчётыToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { directoryReportToolStripMenuItem, busesReportToolStripMenuItem, serviceReportToolStripMenuItem });
отчётыToolStripMenuItem.Name = "отчётыToolStripMenuItem"; отчётыToolStripMenuItem.Name = "отчётыToolStripMenuItem";
отчётыToolStripMenuItem.Size = new Size(73, 24); отчётыToolStripMenuItem.Size = new Size(103, 34);
отчётыToolStripMenuItem.Text = "Отчёты"; отчётыToolStripMenuItem.Text = "Отчёты";
// //
// FormTransportation // directoryReportToolStripMenuItem
// //
AutoScaleDimensions = new SizeF(8F, 20F); directoryReportToolStripMenuItem.Name = "directoryReportToolStripMenuItem";
directoryReportToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.W;
directoryReportToolStripMenuItem.Size = new Size(517, 40);
directoryReportToolStripMenuItem.Text = "Документ со справочниками";
directoryReportToolStripMenuItem.Click += DirectoryReportToolStripMenuItem_Click;
//
// busesReportToolStripMenuItem
//
busesReportToolStripMenuItem.Name = "busesReportToolStripMenuItem";
busesReportToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.E;
busesReportToolStripMenuItem.Size = new Size(517, 40);
busesReportToolStripMenuItem.Text = "Работа сотрудников и автобусов";
busesReportToolStripMenuItem.Click += BusesReportToolStripMenuItem_Click;
//
// serviceReportToolStripMenuItem
//
serviceReportToolStripMenuItem.Name = "serviceReportToolStripMenuItem";
serviceReportToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.P;
serviceReportToolStripMenuItem.Size = new Size(517, 40);
serviceReportToolStripMenuItem.Text = "Сломанные элементы";
serviceReportToolStripMenuItem.Click += ServiceReportToolStripMenuItem_Click;
//
// FormPassengerTransportation
//
AutoScaleDimensions = new SizeF(12F, 30F);
AutoScaleMode = AutoScaleMode.Font; AutoScaleMode = AutoScaleMode.Font;
BackgroundImage = Properties.Resources._1; BackgroundImage = Properties.Resources._1;
BackgroundImageLayout = ImageLayout.Stretch; BackgroundImageLayout = ImageLayout.Stretch;
ClientSize = new Size(739, 424); ClientSize = new Size(976, 636);
Controls.Add(menuStrip1); Controls.Add(menuStrip1);
MainMenuStrip = menuStrip1; MainMenuStrip = menuStrip1;
Margin = new Padding(2, 2, 2, 2); Name = "FormPassengerTransportation";
Name = "FormTransportation";
StartPosition = FormStartPosition.CenterScreen; StartPosition = FormStartPosition.CenterScreen;
Text = "Пассажирские перевозки"; Text = "Пассажирские перевозки";
menuStrip1.ResumeLayout(false); menuStrip1.ResumeLayout(false);
@ -140,5 +165,8 @@ namespace ProjectTransportation
private ToolStripMenuItem отчётыToolStripMenuItem; private ToolStripMenuItem отчётыToolStripMenuItem;
private ToolStripMenuItem StartingShiftsToolStripMenuItem; private ToolStripMenuItem StartingShiftsToolStripMenuItem;
private ToolStripMenuItem GoToServicesToolStripMenuItem; private ToolStripMenuItem GoToServicesToolStripMenuItem;
private ToolStripMenuItem directoryReportToolStripMenuItem;
private ToolStripMenuItem busesReportToolStripMenuItem;
private ToolStripMenuItem serviceReportToolStripMenuItem;
} }
} }

View File

@ -1,4 +1,5 @@
using ProjectTransportation.Forms; using ProjectTransportation.Forms;
using ProjectTransportation.Forms;
using Unity; using Unity;
namespace ProjectTransportation namespace ProjectTransportation
@ -7,70 +8,106 @@ namespace ProjectTransportation
{ {
private readonly IUnityContainer _container; private readonly IUnityContainer _container;
public FormTransportation(IUnityContainer container) public FormTransportation(IUnityContainer container)
{ {
InitializeComponent(); InitializeComponent();
_container = container ?? throw new ArgumentNullException(nameof(container)); _container = container ?? throw new ArgumentNullException(nameof(container));
} }
private void EmployeesToolStripMenuItem_Click(object sender, EventArgs e) private void EmployeesToolStripMenuItem_Click(object sender, EventArgs e)
{
try
{ {
_container.Resolve<FormEmployees>().ShowDialog(); try
{
_container.Resolve<FormEmployees>().ShowDialog();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Îøèáêà ïðè çàãðóçêå", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
} }
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Îøèáêà ïðè çàãðóçêå", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void BusesToolStripMenuItem_Click(object sender, EventArgs e) private void BusesToolStripMenuItem_Click(object sender, EventArgs e)
{
try
{ {
_container.Resolve<FormBuses>().ShowDialog(); try
{
_container.Resolve<FormBuses>().ShowDialog();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Îøèáêà ïðè çàãðóçêå", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
} }
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Îøèáêà ïðè çàãðóçêå", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void RouteListsToolStripMenuItem_Click(object sender, EventArgs e) private void RouteListsToolStripMenuItem_Click(object sender, EventArgs e)
{
try
{ {
_container.Resolve<FormRouteLists>().ShowDialog(); try
{
_container.Resolve<FormRouteLists>().ShowDialog();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Îøèáêà ïðè çàãðóçêå", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
} }
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Îøèáêà ïðè çàãðóçêå", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void StartingShiftsToolStripMenuItem_Click(object sender, EventArgs e) private void StartingShiftsToolStripMenuItem_Click(object sender, EventArgs e)
{
try
{ {
_container.Resolve<FormStartingShifts>().ShowDialog(); try
{
_container.Resolve<FormStartingShifts>().ShowDialog();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Îøèáêà ïðè çàãðóçêå", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
} }
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Îøèáêà ïðè çàãðóçêå", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void GoToServicesToolStripMenuItem_Click(object sender, EventArgs e) private void GoToServicesToolStripMenuItem_Click(object sender, EventArgs e)
{
try
{ {
_container.Resolve<FormGoToServices>().ShowDialog(); try
{
_container.Resolve<FormGoToServices>().ShowDialog();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Îøèáêà ïðè çàãðóçêå", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
} }
catch (Exception ex)
private void DirectoryReportToolStripMenuItem_Click(object sender, EventArgs e)
{ {
MessageBox.Show(ex.Message, "Îøèáêà ïðè çàãðóçêå", MessageBoxButtons.OK, MessageBoxIcon.Error); try
{
_container.Resolve<FormDirectoryReport>().ShowDialog();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Îøèáêà ïðè çàãðóçêå", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void BusesReportToolStripMenuItem_Click(object sender, EventArgs e)
{
try
{
_container.Resolve<FormWorkReport>().ShowDialog();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Îøèáêà ïðè çàãðóçêå", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void ServiceReportToolStripMenuItem_Click(object sender, EventArgs e)
{
try
{
_container.Resolve<FormServiceReport>().ShowDialog();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Îøèáêà ïðè çàãðóçêå", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
} }
} }
} }
}

View File

@ -0,0 +1,103 @@
using static System.Net.Mime.MediaTypeNames;
using System.Windows.Forms;
using System.Xml.Linq;
namespace ProjectTransportation.Forms
{
partial class FormDirectoryReport
{
/// <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()
{
checkBoxBuses = new CheckBox();
checkBoxEmployees = new CheckBox();
checkBoxRouteLists = new CheckBox();
buttonBuild = new Button();
SuspendLayout();
//
// checkBoxBuses
//
checkBoxBuses.AutoSize = true;
checkBoxBuses.Location = new Point(69, 43);
checkBoxBuses.Name = "checkBoxBuses";
checkBoxBuses.Size = new Size(132, 34);
checkBoxBuses.TabIndex = 0;
checkBoxBuses.Text = "Автобусы";
checkBoxBuses.UseVisualStyleBackColor = true;
//
// checkBoxEmployees
//
checkBoxEmployees.AutoSize = true;
checkBoxEmployees.Location = new Point(69, 109);
checkBoxEmployees.Name = "checkBoxEmployees";
checkBoxEmployees.Size = new Size(141, 34);
checkBoxEmployees.TabIndex = 1;
checkBoxEmployees.Text = "Работники";
checkBoxEmployees.UseVisualStyleBackColor = true;
//
// checkBoxRouteLists
//
checkBoxRouteLists.AutoSize = true;
checkBoxRouteLists.Location = new Point(69, 176);
checkBoxRouteLists.Name = "checkBoxRouteLists";
checkBoxRouteLists.Size = new Size(230, 34);
checkBoxRouteLists.TabIndex = 2;
checkBoxRouteLists.Text = "Маршрутные листы";
checkBoxRouteLists.UseVisualStyleBackColor = true;
//
// buttonBuild
//
buttonBuild.Location = new Point(369, 99);
buttonBuild.Name = "buttonBuild";
buttonBuild.Size = new Size(181, 53);
buttonBuild.TabIndex = 3;
buttonBuild.Text = "Сформировать";
buttonBuild.UseVisualStyleBackColor = true;
buttonBuild.Click += ButtonBuild_Click;
//
// FormDirectoryReport
//
AutoScaleDimensions = new SizeF(12F, 30F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(616, 256);
Controls.Add(buttonBuild);
Controls.Add(checkBoxRouteLists);
Controls.Add(checkBoxEmployees);
Controls.Add(checkBoxBuses);
Name = "FormDirectoryReport";
Text = "Выгрузка справочников";
ResumeLayout(false);
PerformLayout();
}
#endregion
private CheckBox checkBoxBuses;
private CheckBox checkBoxEmployees;
private CheckBox checkBoxRouteLists;
private Button buttonBuild;
}
}

View File

@ -0,0 +1,53 @@
using ProjectTransportation.Reports;
using Unity;
namespace ProjectTransportation.Forms
{
public partial class FormDirectoryReport : Form
{
private readonly IUnityContainer _container;
public FormDirectoryReport(IUnityContainer container)
{
InitializeComponent();
_container = container ?? throw new ArgumentNullException(nameof(container));
}
private void ButtonBuild_Click(object sender, EventArgs e)
{
try
{
if (!checkBoxBuses.Checked && !checkBoxEmployees.Checked && !checkBoxRouteLists.Checked)
{
throw new Exception("Не выбран ни один справочник для выгрузки");
}
var sfd = new SaveFileDialog()
{
Filter = "Docx Files | *.docx"
};
if (sfd.ShowDialog() != DialogResult.OK)
{
throw new Exception("Не выбран файла для отчета");
}
if (_container.Resolve<DocReport>().CreateDoc(sfd.FileName, checkBoxBuses.Checked,
checkBoxEmployees.Checked, checkBoxRouteLists.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);
}
}
}
}

View File

@ -1,6 +1,5 @@
using static System.Net.Mime.MediaTypeNames; using DocumentFormat.OpenXml.Spreadsheet;
using System.Windows.Forms; using DocumentFormat.OpenXml.Wordprocessing;
using System.Xml.Linq;
namespace ProjectTransportation.Forms namespace ProjectTransportation.Forms
{ {
@ -46,19 +45,17 @@ namespace ProjectTransportation.Forms
// //
comboBoxPost.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxPost.DropDownStyle = ComboBoxStyle.DropDownList;
comboBoxPost.FormattingEnabled = true; comboBoxPost.FormattingEnabled = true;
comboBoxPost.Location = new Point(155, 111); comboBoxPost.Location = new Point(232, 166);
comboBoxPost.Margin = new Padding(2, 2, 2, 2);
comboBoxPost.Name = "comboBoxPost"; comboBoxPost.Name = "comboBoxPost";
comboBoxPost.Size = new Size(161, 28); comboBoxPost.Size = new Size(240, 38);
comboBoxPost.TabIndex = 0; comboBoxPost.TabIndex = 0;
// //
// buttonCancel // buttonCancel
// //
buttonCancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; buttonCancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
buttonCancel.Location = new Point(214, 163); buttonCancel.Location = new Point(297, 224);
buttonCancel.Margin = new Padding(2, 2, 2, 2);
buttonCancel.Name = "buttonCancel"; buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(90, 33); buttonCancel.Size = new Size(135, 50);
buttonCancel.TabIndex = 14; buttonCancel.TabIndex = 14;
buttonCancel.Text = "Отмена"; buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true; buttonCancel.UseVisualStyleBackColor = true;
@ -67,10 +64,9 @@ namespace ProjectTransportation.Forms
// buttonSave // buttonSave
// //
buttonSave.Anchor = AnchorStyles.Bottom | AnchorStyles.Left; buttonSave.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
buttonSave.Location = new Point(53, 163); buttonSave.Location = new Point(80, 224);
buttonSave.Margin = new Padding(2, 2, 2, 2);
buttonSave.Name = "buttonSave"; buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(99, 33); buttonSave.Size = new Size(135, 50);
buttonSave.TabIndex = 13; buttonSave.TabIndex = 13;
buttonSave.Text = "Сохранить"; buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true; buttonSave.UseVisualStyleBackColor = true;
@ -78,56 +74,51 @@ namespace ProjectTransportation.Forms
// //
// textBoxLastName // textBoxLastName
// //
textBoxLastName.Location = new Point(155, 63); textBoxLastName.Location = new Point(232, 94);
textBoxLastName.Margin = new Padding(2, 2, 2, 2);
textBoxLastName.Name = "textBoxLastName"; textBoxLastName.Name = "textBoxLastName";
textBoxLastName.Size = new Size(161, 27); textBoxLastName.Size = new Size(240, 35);
textBoxLastName.TabIndex = 11; textBoxLastName.TabIndex = 11;
// //
// labelLastName // labelLastName
// //
labelLastName.AutoSize = true; labelLastName.AutoSize = true;
labelLastName.Location = new Point(19, 65); labelLastName.Location = new Point(28, 97);
labelLastName.Margin = new Padding(2, 0, 2, 0);
labelLastName.Name = "labelLastName"; labelLastName.Name = "labelLastName";
labelLastName.Size = new Size(73, 20); labelLastName.Size = new Size(100, 30);
labelLastName.TabIndex = 10; labelLastName.TabIndex = 10;
labelLastName.Text = "Фамилия"; labelLastName.Text = "Фамилия";
// //
// textBoxFirstName // textBoxFirstName
// //
textBoxFirstName.Location = new Point(155, 19); textBoxFirstName.Location = new Point(232, 29);
textBoxFirstName.Margin = new Padding(2, 2, 2, 2);
textBoxFirstName.MaxLength = 10; textBoxFirstName.MaxLength = 10;
textBoxFirstName.Name = "textBoxFirstName"; textBoxFirstName.Name = "textBoxFirstName";
textBoxFirstName.Size = new Size(161, 27); textBoxFirstName.Size = new Size(240, 35);
textBoxFirstName.TabIndex = 9; textBoxFirstName.TabIndex = 9;
// //
// labelFirstName // labelFirstName
// //
labelFirstName.AutoSize = true; labelFirstName.AutoSize = true;
labelFirstName.Location = new Point(19, 21); labelFirstName.Location = new Point(28, 32);
labelFirstName.Margin = new Padding(2, 0, 2, 0);
labelFirstName.Name = "labelFirstName"; labelFirstName.Name = "labelFirstName";
labelFirstName.Size = new Size(39, 20); labelFirstName.Size = new Size(55, 30);
labelFirstName.TabIndex = 8; labelFirstName.TabIndex = 8;
labelFirstName.Text = "Имя"; labelFirstName.Text = "Имя";
// //
// labelPost // labelPost
// //
labelPost.AutoSize = true; labelPost.AutoSize = true;
labelPost.Location = new Point(19, 113); labelPost.Location = new Point(28, 169);
labelPost.Margin = new Padding(2, 0, 2, 0);
labelPost.Name = "labelPost"; labelPost.Name = "labelPost";
labelPost.Size = new Size(86, 20); labelPost.Size = new Size(121, 30);
labelPost.TabIndex = 15; labelPost.TabIndex = 15;
labelPost.Text = "Должность"; labelPost.Text = "Должность";
// //
// FormEmployee // FormEmployee
// //
AutoScaleDimensions = new SizeF(8F, 20F); AutoScaleDimensions = new SizeF(12F, 30F);
AutoScaleMode = AutoScaleMode.Font; AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(353, 211); ClientSize = new Size(506, 296);
Controls.Add(labelPost); Controls.Add(labelPost);
Controls.Add(buttonCancel); Controls.Add(buttonCancel);
Controls.Add(buttonSave); Controls.Add(buttonSave);
@ -136,10 +127,9 @@ namespace ProjectTransportation.Forms
Controls.Add(textBoxFirstName); Controls.Add(textBoxFirstName);
Controls.Add(labelFirstName); Controls.Add(labelFirstName);
Controls.Add(comboBoxPost); Controls.Add(comboBoxPost);
Margin = new Padding(2, 2, 2, 2);
Name = "FormEmployee"; Name = "FormEmployee";
StartPosition = FormStartPosition.CenterParent; StartPosition = FormStartPosition.CenterParent;
Text = "FormEmployee"; Text = "Сотрудник";
ResumeLayout(false); ResumeLayout(false);
PerformLayout(); PerformLayout();
} }

View File

@ -0,0 +1,110 @@
using DocumentFormat.OpenXml.Spreadsheet;
using DocumentFormat.OpenXml.Wordprocessing;
namespace ProjectTransportation.Forms
{
partial class FormServiceReport
{
/// <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()
{
buttonSelectFile = new Button();
labelFileName = new Label();
dateTimePicker = new DateTimePicker();
labelDate = new Label();
buttonMakeReport = new Button();
SuspendLayout();
//
// buttonSelectFile
//
buttonSelectFile.Location = new Point(36, 36);
buttonSelectFile.Name = "buttonSelectFile";
buttonSelectFile.Size = new Size(131, 40);
buttonSelectFile.TabIndex = 0;
buttonSelectFile.Text = "Выбрать";
buttonSelectFile.UseVisualStyleBackColor = true;
buttonSelectFile.Click += ButtonSelectFile_Click;
//
// labelFileName
//
labelFileName.AutoSize = true;
labelFileName.Location = new Point(195, 41);
labelFileName.Name = "labelFileName";
labelFileName.Size = new Size(62, 30);
labelFileName.TabIndex = 1;
labelFileName.Text = "Файл";
//
// dateTimePicker
//
dateTimePicker.Location = new Point(144, 127);
dateTimePicker.Name = "dateTimePicker";
dateTimePicker.Size = new Size(311, 35);
dateTimePicker.TabIndex = 2;
//
// labelDate
//
labelDate.AutoSize = true;
labelDate.Location = new Point(49, 131);
labelDate.Name = "labelDate";
labelDate.Size = new Size(64, 30);
labelDate.TabIndex = 3;
labelDate.Text = "Дата:";
//
// buttonMakeReport
//
buttonMakeReport.Location = new Point(168, 205);
buttonMakeReport.Name = "buttonMakeReport";
buttonMakeReport.Size = new Size(178, 46);
buttonMakeReport.TabIndex = 4;
buttonMakeReport.Text = "Сформировать";
buttonMakeReport.UseVisualStyleBackColor = true;
buttonMakeReport.Click += ButtonMakeReport_Click;
//
// FormServiceReport
//
AutoScaleDimensions = new SizeF(12F, 30F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(511, 276);
Controls.Add(buttonMakeReport);
Controls.Add(labelDate);
Controls.Add(dateTimePicker);
Controls.Add(labelFileName);
Controls.Add(buttonSelectFile);
Name = "FormServiceReport";
Text = "Отчет по тех обслуживанию";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button buttonSelectFile;
private Label labelFileName;
private DateTimePicker dateTimePicker;
private Label labelDate;
private Button buttonMakeReport;
}
}

View File

@ -0,0 +1,61 @@
using ProjectTransportation.Reports;
using System.Windows.Forms;
using Unity;
namespace ProjectTransportation.Forms
{
public partial class FormServiceReport : Form
{
private string _fileName = string.Empty;
private readonly IUnityContainer _container;
public FormServiceReport(IUnityContainer container)
{
InitializeComponent();
_container = container ?? throw new ArgumentNullException(nameof(container));
}
private void ButtonSelectFile_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 ButtonMakeReport_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);
}
}
}
}

View File

@ -2,6 +2,7 @@
using ProjectTransportation.Repositories; using ProjectTransportation.Repositories;
using ProjectTransportation.Entities; using ProjectTransportation.Entities;
using ProjectTransportation.Repositories; using ProjectTransportation.Repositories;
using System.Linq;
namespace ProjectTransportation.Forms namespace ProjectTransportation.Forms
{ {
@ -31,19 +32,16 @@ namespace ProjectTransportation.Forms
try try
{ {
if (dataGridViewEmployees.RowCount < 1 || if (dataGridViewEmployees.RowCount < 1 ||
comboBoxRouteList.SelectedIndex < 0 || comboBoxRouteList.SelectedIndex < 0 ||
comboBoxBus.SelectedIndex < 0) comboBoxBus.SelectedIndex < 0)
{ {
throw new Exception("Имеются незаполненные поля"); throw new Exception("Имеются незаполненные поля");
} }
DateTime selectedDate = dateTimePickerShiftDate.Value.Date; // Получаем выбранную дату
_startingShiftRepository.CreateStartingShift(StartingShift.CreateOperation(0, _startingShiftRepository.CreateStartingShift(StartingShift.CreateOperation(0,
(int)comboBoxRouteList.SelectedValue!, (int)comboBoxRouteList.SelectedValue!,
(int)comboBoxBus.SelectedValue!, (int)comboBoxBus.SelectedValue!,
CreateListStartingShiftEmployeeFromDataGrid(), CreateListStartingShiftEmployeeFromDataGrid()));
selectedDate)); // Передаем выбранную дату
Close(); Close();
} }
@ -66,10 +64,11 @@ namespace ProjectTransportation.Forms
continue; continue;
} }
list.Add(StartingShiftEmployee.CreateElement(0, list.Add(StartingShiftEmployee.CreateElement(0,
Convert.ToInt32(row.Cells["ColumnEmployees"].Value), Convert.ToInt32(row.Cells["ColumnEmployees"].Value),
Convert.ToInt32(row.Cells["ColumnWorkHours"].Value))); Convert.ToInt32(row.Cells["ColumnWorkHours"].Value)));
} }
return list; return list.GroupBy(x => x.Employee_id, x => x.Work_time, (employeeId, workTime) =>
StartingShiftEmployee.CreateElement(0, employeeId, workTime.Sum())).ToList();
} }
} }
} }

View File

@ -0,0 +1,189 @@
using DocumentFormat.OpenXml.Spreadsheet;
using DocumentFormat.OpenXml.Wordprocessing;
namespace ProjectTransportation.Forms
{
partial class FormWorkReport
{
/// <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()
{
labelFilePath = new Label();
textBoxFilePath = new TextBox();
buttonSelectFilePath = new Button();
dateTimePickerBeginDate = new DateTimePicker();
dateTimePickerEndDate = new DateTimePicker();
labelEmployee = new Label();
labelBeginDate = new Label();
labelEndDate = new Label();
buttonMakeReport = new Button();
comboBoxEmployee = new ComboBox();
comboBoxBus = new ComboBox();
labelBus = new Label();
SuspendLayout();
//
// labelFilePath
//
labelFilePath.AutoSize = true;
labelFilePath.Location = new Point(23, 37);
labelFilePath.Name = "labelFilePath";
labelFilePath.Size = new Size(157, 30);
labelFilePath.TabIndex = 0;
labelFilePath.Text = "Путь до файла:";
//
// textBoxFilePath
//
textBoxFilePath.Location = new Point(203, 37);
textBoxFilePath.Name = "textBoxFilePath";
textBoxFilePath.ReadOnly = true;
textBoxFilePath.Size = new Size(361, 35);
textBoxFilePath.TabIndex = 1;
//
// buttonSelectFilePath
//
buttonSelectFilePath.Location = new Point(570, 32);
buttonSelectFilePath.Name = "buttonSelectFilePath";
buttonSelectFilePath.Size = new Size(40, 40);
buttonSelectFilePath.TabIndex = 2;
buttonSelectFilePath.Text = "...";
buttonSelectFilePath.UseVisualStyleBackColor = true;
buttonSelectFilePath.Click += ButtonSelectFilePath_Click;
//
// dateTimePickerBeginDate
//
dateTimePickerBeginDate.Location = new Point(203, 271);
dateTimePickerBeginDate.Name = "dateTimePickerBeginDate";
dateTimePickerBeginDate.Size = new Size(407, 35);
dateTimePickerBeginDate.TabIndex = 4;
//
// dateTimePickerEndDate
//
dateTimePickerEndDate.Location = new Point(203, 343);
dateTimePickerEndDate.Name = "dateTimePickerEndDate";
dateTimePickerEndDate.Size = new Size(407, 35);
dateTimePickerEndDate.TabIndex = 5;
//
// labelEmployee
//
labelEmployee.AutoSize = true;
labelEmployee.Location = new Point(23, 117);
labelEmployee.Name = "labelEmployee";
labelEmployee.Size = new Size(103, 30);
labelEmployee.TabIndex = 6;
labelEmployee.Text = "Работник";
//
// labelBeginDate
//
labelBeginDate.AutoSize = true;
labelBeginDate.Location = new Point(23, 275);
labelBeginDate.Name = "labelBeginDate";
labelBeginDate.Size = new Size(133, 30);
labelBeginDate.TabIndex = 7;
labelBeginDate.Text = "Дата начала";
//
// labelEndDate
//
labelEndDate.AutoSize = true;
labelEndDate.Location = new Point(23, 347);
labelEndDate.Name = "labelEndDate";
labelEndDate.Size = new Size(123, 30);
labelEndDate.TabIndex = 8;
labelEndDate.Text = "Дата конца";
//
// buttonMakeReport
//
buttonMakeReport.Location = new Point(203, 410);
buttonMakeReport.Name = "buttonMakeReport";
buttonMakeReport.Size = new Size(177, 40);
buttonMakeReport.TabIndex = 9;
buttonMakeReport.Text = "Сформировать";
buttonMakeReport.UseVisualStyleBackColor = true;
buttonMakeReport.Click += ButtonMakeReport_Click;
//
// comboBoxEmployee
//
comboBoxEmployee.FormattingEnabled = true;
comboBoxEmployee.Location = new Point(203, 114);
comboBoxEmployee.Name = "comboBoxEmployee";
comboBoxEmployee.Size = new Size(407, 38);
comboBoxEmployee.TabIndex = 10;
//
// comboBoxBus
//
comboBoxBus.FormattingEnabled = true;
comboBoxBus.Location = new Point(203, 191);
comboBoxBus.Name = "comboBoxBus";
comboBoxBus.Size = new Size(407, 38);
comboBoxBus.TabIndex = 12;
//
// labelBus
//
labelBus.AutoSize = true;
labelBus.Location = new Point(23, 194);
labelBus.Name = "labelBus";
labelBus.Size = new Size(91, 30);
labelBus.TabIndex = 11;
labelBus.Text = "Автобус";
//
// FormWorkReport
//
AutoScaleDimensions = new SizeF(12F, 30F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(646, 466);
Controls.Add(comboBoxBus);
Controls.Add(labelBus);
Controls.Add(comboBoxEmployee);
Controls.Add(buttonMakeReport);
Controls.Add(labelEndDate);
Controls.Add(labelBeginDate);
Controls.Add(labelEmployee);
Controls.Add(dateTimePickerEndDate);
Controls.Add(dateTimePickerBeginDate);
Controls.Add(buttonSelectFilePath);
Controls.Add(textBoxFilePath);
Controls.Add(labelFilePath);
Name = "FormWorkReport";
Text = "Отчёт по работе сотрудников и автобусов";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label labelFilePath;
private TextBox textBoxFilePath;
private Button buttonSelectFilePath;
private DateTimePicker dateTimePickerBeginDate;
private DateTimePicker dateTimePickerEndDate;
private Label labelEmployee;
private Label labelBeginDate;
private Label labelEndDate;
private Button buttonMakeReport;
private ComboBox comboBoxEmployee;
private ComboBox comboBoxBus;
private Label labelBus;
}
}

View File

@ -0,0 +1,75 @@
using ProjectTransportation.Reports;
using ProjectTransportation.Repositories;
using ProjectTransportation.Reports;
using ProjectTransportation.Repositories;
using Unity;
namespace ProjectTransportation.Forms
{
public partial class FormWorkReport : Form
{
private readonly IUnityContainer _container;
public FormWorkReport(IUnityContainer container, IEmployeeRepository employeeRepository,
IBusRepository busRepository)
{
InitializeComponent();
_container = container ?? throw new ArgumentNullException(nameof(container));
comboBoxEmployee.DataSource = employeeRepository.ReadEmployees();
comboBoxEmployee.DisplayMember = "First_name";
comboBoxEmployee.ValueMember = "Id";
comboBoxBus.DataSource = busRepository.ReadBuses();
comboBoxBus.DisplayMember = "Licence_plate";
comboBoxBus.ValueMember = "Id";
}
private void ButtonSelectFilePath_Click(object sender, EventArgs e)
{
var sfd = new SaveFileDialog()
{
Filter = "Excel Files | *.xlsx"
};
if (sfd.ShowDialog() != DialogResult.OK)
{
return;
}
textBoxFilePath.Text = sfd.FileName;
}
private void ButtonMakeReport_Click(object sender, EventArgs e)
{
try
{
if (string.IsNullOrWhiteSpace(textBoxFilePath.Text))
{
throw new Exception("Отсутствует имя файла для отчета");
}
if (comboBoxEmployee.SelectedIndex < 0 || comboBoxBus.SelectedIndex < 0)
{
throw new Exception("Не выбран сотрудник или автобус");
}
if (dateTimePickerEndDate.Value <= dateTimePickerBeginDate.Value)
{
throw new Exception("Дата начала должна быть раньше даты окончания");
}
if (_container.Resolve<TableReport>().CreateTable(textBoxFilePath.Text,
(int)comboBoxEmployee.SelectedValue!, (int)comboBoxBus.SelectedValue!,
dateTimePickerBeginDate.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);
}
}
}
}

View File

@ -10,14 +10,16 @@
<ItemGroup> <ItemGroup>
<PackageReference Include="Dapper" Version="2.1.35" /> <PackageReference Include="Dapper" Version="2.1.35" />
<PackageReference Include="DocumentFormat.OpenXml" Version="3.2.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.0" /> <PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.0" /> <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.0" />
<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.2" />
<PackageReference Include="Serilog" Version="4.1.0" /> <PackageReference Include="PDFsharp-MigraDoc" Version="6.1.1" />
<PackageReference Include="Serilog.Extensions.Logging" Version="8.0.0" /> <PackageReference Include="Serilog" Version="4.2.0" />
<PackageReference Include="Serilog.Settings.Configuration" Version="8.0.4" /> <PackageReference Include="Serilog.Extensions.Logging" Version="9.0.0" />
<PackageReference Include="Serilog.Settings.Configuration" Version="9.0.0" />
<PackageReference Include="Serilog.Sinks.File" Version="6.0.0" /> <PackageReference Include="Serilog.Sinks.File" Version="6.0.0" />
<PackageReference Include="Unity" Version="5.11.10" /> <PackageReference Include="Unity" Version="5.11.10" />
<PackageReference Include="Unity.Microsoft.Logging" Version="5.11.1" /> <PackageReference Include="Unity.Microsoft.Logging" Version="5.11.1" />

View File

@ -0,0 +1,50 @@
using Microsoft.Extensions.Logging;
using ProjectTransportation.Repositories;
using ProjectTransportation.Repositories;
using System.Reflection.PortableExecutable;
namespace ProjectTransportation.Reports;
public class ChartReport
{
private readonly IGoToServiceRepository _goToServiceRepository;
private readonly ILogger<ChartReport> _logger;
public ChartReport(IGoToServiceRepository goToServiceRepository, ILogger<ChartReport> logger)
{
_goToServiceRepository = goToServiceRepository ?? throw new ArgumentNullException(nameof(goToServiceRepository));
_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 _goToServiceRepository
.ReadServices()
.Where(x => x.Date.Date == dateTime.Date)
.GroupBy(x => x.Bus_id, (key, group) => new {
Id = key,
Elements = group.Sum(x => (double)x.Broken_elements)
})
.Select(x => (x.Id.ToString(), (double)x.Elements))
.ToList();
}
}

View File

@ -0,0 +1,91 @@
using Microsoft.Extensions.Logging;
using ProjectTransportation.Repositories;
using ProjectTransportation.Repositories;
namespace ProjectTransportation.Reports;
public class DocReport
{
private readonly IBusRepository _busRepository;
private readonly IEmployeeRepository _employeeRepository;
private readonly IRouteListRepository _routeListRepository;
private readonly ILogger<DocReport> _logger;
public DocReport(IBusRepository busRepository, IEmployeeRepository employeeRepository,
IRouteListRepository routeListRepository, ILogger<DocReport> logger)
{
_busRepository = busRepository ?? throw new ArgumentNullException(nameof(busRepository));
_employeeRepository = employeeRepository ?? throw new ArgumentNullException(nameof(employeeRepository));
_routeListRepository = routeListRepository ?? throw new ArgumentNullException(nameof(routeListRepository));
_logger = logger ?? throw new ArgumentNullException(nameof(logger));
}
public bool CreateDoc(string filePath, bool includeBuses, bool includeEmployees, bool includeRouteLists)
{
try
{
var builder = new WordBuilder(filePath)
.AddHeader("Документ со справочниками");
if (includeBuses)
{
builder.AddParagraph("Автобусы")
.AddTable([2400, 2400], GetBuses());
}
if (includeEmployees)
{
builder.AddParagraph("Работники")
.AddTable([2400, 2400, 2400], GetEmployess());
}
if (includeRouteLists)
{
builder.AddParagraph("Маршрутные листы")
.AddTable([1200, 1200], GetRouteLists());
}
builder.Build();
return true;
}
catch (Exception ex)
{
_logger.LogError(ex, "Ошибка при формировании документа");
return false;
}
}
private List<string[]> GetBuses()
{
return [
["Госномер", "Модель"],
.. _busRepository
.ReadBuses()
.Select(x => new string[] { x.Licence_plate, x.Model }),
];
}
private List<string[]> GetEmployess()
{
return [
["Имя", "Фамилия", "Должность"],
.. _employeeRepository
.ReadEmployees()
.Select(x => new string[] { x.First_name, x.Last_name, x.Post.ToString() }),
];
}
private List<string[]> GetRouteLists()
{
return [
["Начало работы", "Конец работы"],
.. _routeListRepository
.ReadRouteLists()
.Select(x => new string[] { x.Route_start.ToString(), x.Route_finish.ToString() }),
];
}
}

View File

@ -0,0 +1,322 @@
using DocumentFormat.OpenXml.Packaging;
using DocumentFormat.OpenXml.Spreadsheet;
using DocumentFormat.OpenXml;
namespace ProjectTransportation.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<string[]> 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>();
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<SheetData>().First());
}
}
private static void GenerateStyle(WorkbookPart workbookPart)
{
var workbookStylesPart = workbookPart.AddNewPart<WorkbookStylesPart>();
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>(FontSchemeValues.Minor) }
});
fonts.Append(new DocumentFormat.OpenXml.Spreadsheet.Font
{
FontSize = new FontSize() { Val = 11 },
FontName = new FontName() { Val = "Calibri" },
FontFamilyNumbering = new FontFamilyNumbering() { Val = 2 },
FontScheme = new FontScheme()
{
Val = new EnumValue<FontSchemeValues>(FontSchemeValues.Minor)
},
Bold = new Bold() { Val = true }
});
workbookStylesPart.Stylesheet.Append(fonts);
// Default Fill
var fills = new Fills() { Count = 1 };
fills.Append(new Fill
{
PatternFill = new PatternFill()
{
PatternType = new EnumValue<PatternValues>(PatternValues.None)
}
});
workbookStylesPart.Stylesheet.Append(fills);
// Default Border
var borders = new Borders() { Count = 2 };
borders.Append(new Border
{
LeftBorder = new LeftBorder(),
RightBorder = new RightBorder(),
TopBorder = new TopBorder(),
BottomBorder = new BottomBorder(),
DiagonalBorder = new DiagonalBorder()
});
borders.Append(new Border
{
LeftBorder = new LeftBorder() { Style = BorderStyleValues.Thin },
RightBorder = new RightBorder() { Style = BorderStyleValues.Thin },
TopBorder = new TopBorder() { Style = BorderStyleValues.Thin },
BottomBorder = new BottomBorder() { Style = BorderStyleValues.Thin },
DiagonalBorder = new DiagonalBorder()
});
workbookStylesPart.Stylesheet.Append(borders);
// Default cell format and a date cell format
var cellFormats = new CellFormats() { Count = 4 };
cellFormats.Append(new CellFormat
{
NumberFormatId = 0,
FormatId = 0,
FontId = 0,
BorderId = 0,
FillId = 0,
Alignment = new Alignment()
{
Horizontal = HorizontalAlignmentValues.Left,
Vertical = VerticalAlignmentValues.Center,
WrapText = true
}
});
cellFormats.Append(new CellFormat
{
NumberFormatId = 0,
FormatId = 0,
FontId = 0,
BorderId = 1,
FillId = 0,
Alignment = new Alignment()
{
Horizontal = HorizontalAlignmentValues.Right,
Vertical = VerticalAlignmentValues.Center,
WrapText = true
}
});
cellFormats.Append(new CellFormat
{
NumberFormatId = 0,
FormatId = 0,
FontId = 1,
BorderId = 0,
FillId = 0,
Alignment = new Alignment()
{
Horizontal = HorizontalAlignmentValues.Center,
Vertical = VerticalAlignmentValues.Center,
WrapText = true
}
});
cellFormats.Append(new CellFormat
{
NumberFormatId = 0,
FormatId = 0,
FontId = 1,
BorderId = 1,
FillId = 0,
Alignment = new Alignment()
{
Horizontal = HorizontalAlignmentValues.Center,
Vertical = VerticalAlignmentValues.Center,
WrapText = true
}
});
workbookStylesPart.Stylesheet.Append(cellFormats);
}
private enum StyleIndex
{
SimpleTextWithoutBorder = 0,
SimpleTextWithBorder = 1,
BoldTextWithoutBorder = 2,
BoldTextWithBorder = 3
}
private void CreateCell(int columnIndex, uint rowIndex, string text, StyleIndex styleIndex)
{
var columnName = GetExcelColumnName(columnIndex);
var cellReference = columnName + rowIndex;
var row = _sheetData.Elements<Row>().FirstOrDefault(r => r.RowIndex! == rowIndex);
if (row == null)
{
row = new Row() { RowIndex = rowIndex };
_sheetData.Append(row);
}
var newCell = row.Elements<Cell>()
.FirstOrDefault(c => c.CellReference != null && c.CellReference.Value == columnName + rowIndex);
if (newCell == null)
{
Cell? refCell = null;
foreach (Cell cell in row.Elements<Cell>())
{
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;
}
}

View File

@ -0,0 +1,92 @@
using MigraDoc.DocumentObjectModel;
using MigraDoc.DocumentObjectModel.Shapes.Charts;
using MigraDoc.Rendering;
using System.Text;
namespace ProjectTransportation.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.Styles.AddStyle("NormalBold", "Normal");
headerStyle.Font.Bold = true;
headerStyle.Font.Size = 14;
}
}

View File

@ -0,0 +1,78 @@
using Microsoft.Extensions.Logging;
using ProjectTransportation.Repositories;
using ProjectTransportation.Reports;
using ProjectTransportation.Repositories;
namespace ProjectTransportation.Reports;
public class TableReport
{
private readonly IStartingShiftRepository _startingShiftRepository;
private readonly IGoToServiceRepository _goToServiceRepository;
private readonly ILogger<TableReport> _logger;
internal static readonly string[] item = ["Работник", "Автобус", "Дата", "Отработано часов", "Потрачено на тех обслуживание"];
public TableReport(IStartingShiftRepository startingShiftRepository,
IGoToServiceRepository goToServiceRepository, ILogger<TableReport> logger)
{
_startingShiftRepository = startingShiftRepository ?? throw new ArgumentNullException(nameof(startingShiftRepository));
_goToServiceRepository = goToServiceRepository ?? throw new ArgumentNullException(nameof(goToServiceRepository));
_logger = logger ?? throw new ArgumentNullException(nameof(logger));
}
public bool CreateTable(string filePath, int employeeId, int busId, DateTime startDate, DateTime endDate)
{
try
{
new ExcelBuilder(filePath)
.AddHeader("Таблица по работникам и автобусам", 0, 5)
.AddParagraph("за период", 0)
.AddTable([10, 10, 10, 15, 15], GetData(employeeId, busId, startDate, endDate))
.Build();
return true;
}
catch (Exception ex)
{
_logger.LogError(ex, "Ошибка при формировании документа");
return false;
}
}
private List<string[]> GetData(int employeeId, int busId, DateTime startDate, DateTime endDate)
{
var data = _startingShiftRepository
.ReadShifts()
.Where(x => x.Date >= startDate && x.Date <= endDate && x.Starting_shift_employees.Any(y => y.Employee_id == employeeId))
.Select(x => new {
EmployeeId = (int?)employeeId,
BusId = (int?)null,
x.Date,
WorkHours = x.Starting_shift_employees.FirstOrDefault(y => y.Employee_id == employeeId)?.Work_time,
Price = (int?)null
})
.Union(_goToServiceRepository
.ReadServices()
.Where(x => x.Date >= startDate && x.Date <= endDate && x.Bus_id == busId)
.Select(x => new {
EmployeeId = (int?)null,
BusId = (int?)busId,
x.Date,
WorkHours = (int?)null,
Price = (int?)x.Price
}))
.OrderBy(x => x.Date);
return new List<string[]>() { item }
.Union(data
.Select(x => new string[] {
x.EmployeeId.ToString() ?? string.Empty,
x.BusId.ToString() ?? string.Empty,
x.Date.ToString(),
x.WorkHours?.ToString() ?? string.Empty,
x.Price?.ToString() ?? string.Empty}))
.Union([["Всего", "", "", data.Sum(x => x.WorkHours ?? 0).ToString(), data.Sum(x => x.Price ?? 0).ToString()]])
.ToList();
}
}

View File

@ -0,0 +1,107 @@
using DocumentFormat.OpenXml.Packaging;
using DocumentFormat.OpenXml.Wordprocessing;
using DocumentFormat.OpenXml;
namespace ProjectTransportation.Reports;
public class WordBuilder
{
private readonly string _filePath;
private readonly Document _document;
private readonly Body _body;
public WordBuilder(string filePath)
{
if (string.IsNullOrWhiteSpace(filePath))
{
throw new ArgumentNullException(nameof(filePath));
}
if (File.Exists(filePath))
{
File.Delete(filePath);
}
_filePath = filePath;
_document = new Document();
_body = _document.AppendChild(new Body());
}
public WordBuilder AddHeader(string header)
{
var paragraph = _body.AppendChild(new Paragraph());
var run = paragraph.AppendChild(new Run());
var runProperties = run.AppendChild(new RunProperties());
runProperties.AppendChild(new Bold());
run.AppendChild(new Text(header));
return this;
}
public WordBuilder AddParagraph(string text)
{
var paragraph = _body.AppendChild(new Paragraph());
var run = paragraph.AppendChild(new Run());
run.AppendChild(new Text(text));
return this;
}
public WordBuilder AddTable(int[] widths, List<string[]> 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>(BorderValues.Single), Size = 12 },
new BottomBorder() { Val = new EnumValue<BorderValues>(BorderValues.Single), Size = 12 },
new LeftBorder() { Val = new EnumValue<BorderValues>(BorderValues.Single), Size = 12 },
new RightBorder() { Val = new EnumValue<BorderValues>(BorderValues.Single), Size = 12 },
new InsideHorizontalBorder() { Val = new EnumValue<BorderValues>(BorderValues.Single), Size = 12 },
new InsideVerticalBorder() { Val = new EnumValue<BorderValues>(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;
}
}

View File

@ -58,10 +58,14 @@ VALUES (@Starting_shift_id, @Employee_id, @Work_time)";
try try
{ {
using var connection = new NpgsqlConnection(_connectionString.ConnectionString); using var connection = new NpgsqlConnection(_connectionString.ConnectionString);
var querySelect = @"SELECT * FROM starting_shift"; var querySelect = @"
var startingShifts = connection.Query<StartingShift>(querySelect); SELECT sse.starting_shift_id, ss.date, ss.route_list_id, ss.bus_id, sse.employee_id, sse.work_time FROM starting_shift ss
INNER JOIN starting_shift_employee sse ON sse.starting_shift_id = ss.id";
var startingShifts = connection.Query<TempStartingShiftEmployee>(querySelect);
_logger.LogDebug("Полученные объекты: {json}", JsonConvert.SerializeObject(startingShifts)); _logger.LogDebug("Полученные объекты: {json}", JsonConvert.SerializeObject(startingShifts));
return startingShifts; return startingShifts.GroupBy(x => x.Starting_shift_id, y => y,
(key, value) => StartingShift.CreateOperation(value.First(),
value.Select(z => StartingShiftEmployee.CreateElement(0, z.Employee_id, z.Work_time)))).ToList();
} }
catch (Exception ex) catch (Exception ex)
{ {

Binary file not shown.

After

Width:  |  Height:  |  Size: 148 KiB