diff --git a/ProjectTransportation/ProjectTransportation/Entities/Enums/TempStartingShiftEmployee.cs b/ProjectTransportation/ProjectTransportation/Entities/Enums/TempStartingShiftEmployee.cs new file mode 100644 index 0000000..57507db --- /dev/null +++ b/ProjectTransportation/ProjectTransportation/Entities/Enums/TempStartingShiftEmployee.cs @@ -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; } +} diff --git a/ProjectTransportation/ProjectTransportation/Entities/StartingShift.cs b/ProjectTransportation/ProjectTransportation/Entities/StartingShift.cs index 6f03900..dc6b8c9 100644 --- a/ProjectTransportation/ProjectTransportation/Entities/StartingShift.cs +++ b/ProjectTransportation/ProjectTransportation/Entities/StartingShift.cs @@ -15,15 +15,28 @@ public class StartingShift public IEnumerable Starting_shift_employees { get; private set; } = []; public static StartingShift CreateOperation(int id, int routeListId, int busId, - IEnumerable startingShiftEmployees, DateTime date) + IEnumerable startingShiftEmployees) { return new StartingShift() { Id = id, - Date = date, + Date = DateTime.Now, Route_list_id = routeListId, Bus_id = busId, Starting_shift_employees = startingShiftEmployees }; } -} \ No newline at end of file + + public static StartingShift CreateOperation(TempStartingShiftEmployee tempStartingShiftEmployee, + IEnumerable 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 + }; + } +} diff --git a/ProjectTransportation/ProjectTransportation/FormTransportation.Designer.cs b/ProjectTransportation/ProjectTransportation/FormTransportation.Designer.cs index 3ec8324..435b298 100644 --- a/ProjectTransportation/ProjectTransportation/FormTransportation.Designer.cs +++ b/ProjectTransportation/ProjectTransportation/FormTransportation.Designer.cs @@ -1,6 +1,5 @@ -using static System.Net.Mime.MediaTypeNames; -using System.Windows.Forms; -using System.Xml.Linq; +using DocumentFormat.OpenXml.Spreadsheet; +using DocumentFormat.OpenXml.Wordprocessing; namespace ProjectTransportation { @@ -41,6 +40,9 @@ namespace ProjectTransportation StartingShiftsToolStripMenuItem = new ToolStripMenuItem(); GoToServicesToolStripMenuItem = new ToolStripMenuItem(); отчётыToolStripMenuItem = new ToolStripMenuItem(); + directoryReportToolStripMenuItem = new ToolStripMenuItem(); + busesReportToolStripMenuItem = new ToolStripMenuItem(); + serviceReportToolStripMenuItem = new ToolStripMenuItem(); menuStrip1.SuspendLayout(); SuspendLayout(); // @@ -50,8 +52,7 @@ namespace ProjectTransportation menuStrip1.Items.AddRange(new ToolStripItem[] { справочникиToolStripMenuItem, операцииToolStripMenuItem, отчётыToolStripMenuItem }); menuStrip1.Location = new Point(0, 0); menuStrip1.Name = "menuStrip1"; - menuStrip1.Padding = new Padding(4, 1, 0, 1); - menuStrip1.Size = new Size(739, 26); + menuStrip1.Size = new Size(976, 38); menuStrip1.TabIndex = 0; menuStrip1.Text = "menuStrip1"; // @@ -59,27 +60,27 @@ namespace ProjectTransportation // справочникиToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { EmployeesToolStripMenuItem, BusesToolStripMenuItem, RouteListsToolStripMenuItem }); справочникиToolStripMenuItem.Name = "справочникиToolStripMenuItem"; - справочникиToolStripMenuItem.Size = new Size(117, 24); + справочникиToolStripMenuItem.Size = new Size(160, 34); справочникиToolStripMenuItem.Text = "Справочники"; // // EmployeesToolStripMenuItem // EmployeesToolStripMenuItem.Name = "EmployeesToolStripMenuItem"; - EmployeesToolStripMenuItem.Size = new Size(167, 26); + EmployeesToolStripMenuItem.Size = new Size(236, 40); EmployeesToolStripMenuItem.Text = "Работники"; EmployeesToolStripMenuItem.Click += EmployeesToolStripMenuItem_Click; // // BusesToolStripMenuItem // BusesToolStripMenuItem.Name = "BusesToolStripMenuItem"; - BusesToolStripMenuItem.Size = new Size(167, 26); + BusesToolStripMenuItem.Size = new Size(236, 40); BusesToolStripMenuItem.Text = "Автобусы"; BusesToolStripMenuItem.Click += BusesToolStripMenuItem_Click; // // RouteListsToolStripMenuItem // RouteListsToolStripMenuItem.Name = "RouteListsToolStripMenuItem"; - RouteListsToolStripMenuItem.Size = new Size(167, 26); + RouteListsToolStripMenuItem.Size = new Size(236, 40); RouteListsToolStripMenuItem.Text = "Маршруты"; RouteListsToolStripMenuItem.Click += RouteListsToolStripMenuItem_Click; // @@ -87,40 +88,64 @@ namespace ProjectTransportation // операцииToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { StartingShiftsToolStripMenuItem, GoToServicesToolStripMenuItem }); операцииToolStripMenuItem.Name = "операцииToolStripMenuItem"; - операцииToolStripMenuItem.Size = new Size(95, 24); + операцииToolStripMenuItem.Size = new Size(130, 34); операцииToolStripMenuItem.Text = "Операции"; // // StartingShiftsToolStripMenuItem // StartingShiftsToolStripMenuItem.Name = "StartingShiftsToolStripMenuItem"; - StartingShiftsToolStripMenuItem.Size = new Size(224, 26); + StartingShiftsToolStripMenuItem.Size = new Size(314, 40); StartingShiftsToolStripMenuItem.Text = "Начало смены"; StartingShiftsToolStripMenuItem.Click += StartingShiftsToolStripMenuItem_Click; // // GoToServicesToolStripMenuItem // GoToServicesToolStripMenuItem.Name = "GoToServicesToolStripMenuItem"; - GoToServicesToolStripMenuItem.Size = new Size(224, 26); + GoToServicesToolStripMenuItem.Size = new Size(314, 40); GoToServicesToolStripMenuItem.Text = "Тех. обслуживание"; GoToServicesToolStripMenuItem.Click += GoToServicesToolStripMenuItem_Click; // // отчётыToolStripMenuItem // + отчётыToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { directoryReportToolStripMenuItem, busesReportToolStripMenuItem, serviceReportToolStripMenuItem }); отчётыToolStripMenuItem.Name = "отчётыToolStripMenuItem"; - отчётыToolStripMenuItem.Size = new Size(73, 24); + отчётыToolStripMenuItem.Size = new Size(103, 34); отчёты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; BackgroundImage = Properties.Resources._1; BackgroundImageLayout = ImageLayout.Stretch; - ClientSize = new Size(739, 424); + ClientSize = new Size(976, 636); Controls.Add(menuStrip1); MainMenuStrip = menuStrip1; - Margin = new Padding(2, 2, 2, 2); - Name = "FormTransportation"; + Name = "FormPassengerTransportation"; StartPosition = FormStartPosition.CenterScreen; Text = "Пассажирские перевозки"; menuStrip1.ResumeLayout(false); @@ -140,5 +165,8 @@ namespace ProjectTransportation private ToolStripMenuItem отчётыToolStripMenuItem; private ToolStripMenuItem StartingShiftsToolStripMenuItem; private ToolStripMenuItem GoToServicesToolStripMenuItem; + private ToolStripMenuItem directoryReportToolStripMenuItem; + private ToolStripMenuItem busesReportToolStripMenuItem; + private ToolStripMenuItem serviceReportToolStripMenuItem; } } diff --git a/ProjectTransportation/ProjectTransportation/FormTransportation.cs b/ProjectTransportation/ProjectTransportation/FormTransportation.cs index 13e56bf..ea1aee2 100644 --- a/ProjectTransportation/ProjectTransportation/FormTransportation.cs +++ b/ProjectTransportation/ProjectTransportation/FormTransportation.cs @@ -1,4 +1,5 @@ using ProjectTransportation.Forms; +using ProjectTransportation.Forms; using Unity; namespace ProjectTransportation @@ -7,70 +8,106 @@ namespace ProjectTransportation { private readonly IUnityContainer _container; - public FormTransportation(IUnityContainer container) - { - InitializeComponent(); - _container = container ?? throw new ArgumentNullException(nameof(container)); - } + public FormTransportation(IUnityContainer container) + { + InitializeComponent(); + _container = container ?? throw new ArgumentNullException(nameof(container)); + } - private void EmployeesToolStripMenuItem_Click(object sender, EventArgs e) - { - try + private void EmployeesToolStripMenuItem_Click(object sender, EventArgs e) { - _container.Resolve().ShowDialog(); + try + { + _container.Resolve().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) - { - try + private void BusesToolStripMenuItem_Click(object sender, EventArgs e) { - _container.Resolve().ShowDialog(); + try + { + _container.Resolve().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) - { - try + private void RouteListsToolStripMenuItem_Click(object sender, EventArgs e) { - _container.Resolve().ShowDialog(); + try + { + _container.Resolve().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) - { - try + private void StartingShiftsToolStripMenuItem_Click(object sender, EventArgs e) { - _container.Resolve().ShowDialog(); + try + { + _container.Resolve().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) - { - try + private void GoToServicesToolStripMenuItem_Click(object sender, EventArgs e) { - _container.Resolve().ShowDialog(); + try + { + _container.Resolve().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().ShowDialog(); + } + catch (Exception ex) + { + MessageBox.Show(ex.Message, "Îøèáêà ïðè çàãðóçêå", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + + private void BusesReportToolStripMenuItem_Click(object sender, EventArgs e) + { + try + { + _container.Resolve().ShowDialog(); + } + catch (Exception ex) + { + MessageBox.Show(ex.Message, "Îøèáêà ïðè çàãðóçêå", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + + private void ServiceReportToolStripMenuItem_Click(object sender, EventArgs e) + { + try + { + _container.Resolve().ShowDialog(); + } + catch (Exception ex) + { + MessageBox.Show(ex.Message, "Îøèáêà ïðè çàãðóçêå", MessageBoxButtons.OK, MessageBoxIcon.Error); + } } } } -} diff --git a/ProjectTransportation/ProjectTransportation/Forms/FormDirectoryReport.Designer.cs b/ProjectTransportation/ProjectTransportation/Forms/FormDirectoryReport.Designer.cs new file mode 100644 index 0000000..f75e149 --- /dev/null +++ b/ProjectTransportation/ProjectTransportation/Forms/FormDirectoryReport.Designer.cs @@ -0,0 +1,103 @@ +using static System.Net.Mime.MediaTypeNames; +using System.Windows.Forms; +using System.Xml.Linq; + +namespace ProjectTransportation.Forms +{ + partial class FormDirectoryReport + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + 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; + } +} \ No newline at end of file diff --git a/ProjectTransportation/ProjectTransportation/Forms/FormDirectoryReport.cs b/ProjectTransportation/ProjectTransportation/Forms/FormDirectoryReport.cs new file mode 100644 index 0000000..9e443d8 --- /dev/null +++ b/ProjectTransportation/ProjectTransportation/Forms/FormDirectoryReport.cs @@ -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().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); + } + } + } +} diff --git a/ProjectTransportation/ProjectTransportation/Forms/FormEmployee.Designer.cs b/ProjectTransportation/ProjectTransportation/Forms/FormEmployee.Designer.cs index b0a44bc..cdbf803 100644 --- a/ProjectTransportation/ProjectTransportation/Forms/FormEmployee.Designer.cs +++ b/ProjectTransportation/ProjectTransportation/Forms/FormEmployee.Designer.cs @@ -1,6 +1,5 @@ -using static System.Net.Mime.MediaTypeNames; -using System.Windows.Forms; -using System.Xml.Linq; +using DocumentFormat.OpenXml.Spreadsheet; +using DocumentFormat.OpenXml.Wordprocessing; namespace ProjectTransportation.Forms { @@ -46,19 +45,17 @@ namespace ProjectTransportation.Forms // comboBoxPost.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxPost.FormattingEnabled = true; - comboBoxPost.Location = new Point(155, 111); - comboBoxPost.Margin = new Padding(2, 2, 2, 2); + comboBoxPost.Location = new Point(232, 166); comboBoxPost.Name = "comboBoxPost"; - comboBoxPost.Size = new Size(161, 28); + comboBoxPost.Size = new Size(240, 38); comboBoxPost.TabIndex = 0; // // buttonCancel // buttonCancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right; - buttonCancel.Location = new Point(214, 163); - buttonCancel.Margin = new Padding(2, 2, 2, 2); + buttonCancel.Location = new Point(297, 224); buttonCancel.Name = "buttonCancel"; - buttonCancel.Size = new Size(90, 33); + buttonCancel.Size = new Size(135, 50); buttonCancel.TabIndex = 14; buttonCancel.Text = "Отмена"; buttonCancel.UseVisualStyleBackColor = true; @@ -67,10 +64,9 @@ namespace ProjectTransportation.Forms // buttonSave // buttonSave.Anchor = AnchorStyles.Bottom | AnchorStyles.Left; - buttonSave.Location = new Point(53, 163); - buttonSave.Margin = new Padding(2, 2, 2, 2); + buttonSave.Location = new Point(80, 224); buttonSave.Name = "buttonSave"; - buttonSave.Size = new Size(99, 33); + buttonSave.Size = new Size(135, 50); buttonSave.TabIndex = 13; buttonSave.Text = "Сохранить"; buttonSave.UseVisualStyleBackColor = true; @@ -78,56 +74,51 @@ namespace ProjectTransportation.Forms // // textBoxLastName // - textBoxLastName.Location = new Point(155, 63); - textBoxLastName.Margin = new Padding(2, 2, 2, 2); + textBoxLastName.Location = new Point(232, 94); textBoxLastName.Name = "textBoxLastName"; - textBoxLastName.Size = new Size(161, 27); + textBoxLastName.Size = new Size(240, 35); textBoxLastName.TabIndex = 11; // // labelLastName // labelLastName.AutoSize = true; - labelLastName.Location = new Point(19, 65); - labelLastName.Margin = new Padding(2, 0, 2, 0); + labelLastName.Location = new Point(28, 97); labelLastName.Name = "labelLastName"; - labelLastName.Size = new Size(73, 20); + labelLastName.Size = new Size(100, 30); labelLastName.TabIndex = 10; labelLastName.Text = "Фамилия"; // // textBoxFirstName // - textBoxFirstName.Location = new Point(155, 19); - textBoxFirstName.Margin = new Padding(2, 2, 2, 2); + textBoxFirstName.Location = new Point(232, 29); textBoxFirstName.MaxLength = 10; textBoxFirstName.Name = "textBoxFirstName"; - textBoxFirstName.Size = new Size(161, 27); + textBoxFirstName.Size = new Size(240, 35); textBoxFirstName.TabIndex = 9; // // labelFirstName // labelFirstName.AutoSize = true; - labelFirstName.Location = new Point(19, 21); - labelFirstName.Margin = new Padding(2, 0, 2, 0); + labelFirstName.Location = new Point(28, 32); labelFirstName.Name = "labelFirstName"; - labelFirstName.Size = new Size(39, 20); + labelFirstName.Size = new Size(55, 30); labelFirstName.TabIndex = 8; labelFirstName.Text = "Имя"; // // labelPost // labelPost.AutoSize = true; - labelPost.Location = new Point(19, 113); - labelPost.Margin = new Padding(2, 0, 2, 0); + labelPost.Location = new Point(28, 169); labelPost.Name = "labelPost"; - labelPost.Size = new Size(86, 20); + labelPost.Size = new Size(121, 30); labelPost.TabIndex = 15; labelPost.Text = "Должность"; // // FormEmployee // - AutoScaleDimensions = new SizeF(8F, 20F); + AutoScaleDimensions = new SizeF(12F, 30F); AutoScaleMode = AutoScaleMode.Font; - ClientSize = new Size(353, 211); + ClientSize = new Size(506, 296); Controls.Add(labelPost); Controls.Add(buttonCancel); Controls.Add(buttonSave); @@ -136,10 +127,9 @@ namespace ProjectTransportation.Forms Controls.Add(textBoxFirstName); Controls.Add(labelFirstName); Controls.Add(comboBoxPost); - Margin = new Padding(2, 2, 2, 2); Name = "FormEmployee"; StartPosition = FormStartPosition.CenterParent; - Text = "FormEmployee"; + Text = "Сотрудник"; ResumeLayout(false); PerformLayout(); } diff --git a/ProjectTransportation/ProjectTransportation/Forms/FormServiceReport.Designer.cs b/ProjectTransportation/ProjectTransportation/Forms/FormServiceReport.Designer.cs new file mode 100644 index 0000000..9bab9c7 --- /dev/null +++ b/ProjectTransportation/ProjectTransportation/Forms/FormServiceReport.Designer.cs @@ -0,0 +1,110 @@ +using DocumentFormat.OpenXml.Spreadsheet; +using DocumentFormat.OpenXml.Wordprocessing; + +namespace ProjectTransportation.Forms +{ + partial class FormServiceReport + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + 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; + } +} \ No newline at end of file diff --git a/ProjectTransportation/ProjectTransportation/Forms/FormServiceReport.cs b/ProjectTransportation/ProjectTransportation/Forms/FormServiceReport.cs new file mode 100644 index 0000000..eab1759 --- /dev/null +++ b/ProjectTransportation/ProjectTransportation/Forms/FormServiceReport.cs @@ -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().CreateChart(_fileName, dateTimePicker.Value)) + { + MessageBox.Show("Документ сформирован", "Формирование документа", + MessageBoxButtons.OK, MessageBoxIcon.Information); + } + else + { + MessageBox.Show("Возникли ошибки при формировании документа.Подробности в логах", + "Формирование документа", MessageBoxButtons.OK, MessageBoxIcon.Information); + } + } + catch (Exception ex) + { + MessageBox.Show(ex.Message, "Ошибка при создании очета", + MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + } +} diff --git a/ProjectTransportation/ProjectTransportation/Forms/FormStartingShift.cs b/ProjectTransportation/ProjectTransportation/Forms/FormStartingShift.cs index 464e2d3..8edb76b 100644 --- a/ProjectTransportation/ProjectTransportation/Forms/FormStartingShift.cs +++ b/ProjectTransportation/ProjectTransportation/Forms/FormStartingShift.cs @@ -2,6 +2,7 @@ using ProjectTransportation.Repositories; using ProjectTransportation.Entities; using ProjectTransportation.Repositories; +using System.Linq; namespace ProjectTransportation.Forms { @@ -31,19 +32,16 @@ namespace ProjectTransportation.Forms try { if (dataGridViewEmployees.RowCount < 1 || - comboBoxRouteList.SelectedIndex < 0 || - comboBoxBus.SelectedIndex < 0) + comboBoxRouteList.SelectedIndex < 0 || + comboBoxBus.SelectedIndex < 0) { throw new Exception("Имеются незаполненные поля"); } - DateTime selectedDate = dateTimePickerShiftDate.Value.Date; // Получаем выбранную дату - _startingShiftRepository.CreateStartingShift(StartingShift.CreateOperation(0, - (int)comboBoxRouteList.SelectedValue!, - (int)comboBoxBus.SelectedValue!, - CreateListStartingShiftEmployeeFromDataGrid(), - selectedDate)); // Передаем выбранную дату + (int)comboBoxRouteList.SelectedValue!, + (int)comboBoxBus.SelectedValue!, + CreateListStartingShiftEmployeeFromDataGrid())); Close(); } @@ -66,10 +64,11 @@ namespace ProjectTransportation.Forms continue; } list.Add(StartingShiftEmployee.CreateElement(0, - Convert.ToInt32(row.Cells["ColumnEmployees"].Value), - Convert.ToInt32(row.Cells["ColumnWorkHours"].Value))); + Convert.ToInt32(row.Cells["ColumnEmployees"].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(); } } } diff --git a/ProjectTransportation/ProjectTransportation/Forms/FormWorkReport.Designer.cs b/ProjectTransportation/ProjectTransportation/Forms/FormWorkReport.Designer.cs new file mode 100644 index 0000000..feea788 --- /dev/null +++ b/ProjectTransportation/ProjectTransportation/Forms/FormWorkReport.Designer.cs @@ -0,0 +1,189 @@ +using DocumentFormat.OpenXml.Spreadsheet; +using DocumentFormat.OpenXml.Wordprocessing; + +namespace ProjectTransportation.Forms +{ + partial class FormWorkReport + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + labelFilePath = new Label(); + 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; + } +} \ No newline at end of file diff --git a/ProjectTransportation/ProjectTransportation/Forms/FormWorkReport.cs b/ProjectTransportation/ProjectTransportation/Forms/FormWorkReport.cs new file mode 100644 index 0000000..92d5809 --- /dev/null +++ b/ProjectTransportation/ProjectTransportation/Forms/FormWorkReport.cs @@ -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().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); + } + } + } +} diff --git a/ProjectTransportation/ProjectTransportation/ProjectTransportation.csproj b/ProjectTransportation/ProjectTransportation/ProjectTransportation.csproj index 0c90c97..b27237b 100644 --- a/ProjectTransportation/ProjectTransportation/ProjectTransportation.csproj +++ b/ProjectTransportation/ProjectTransportation/ProjectTransportation.csproj @@ -10,14 +10,16 @@ + - - - - + + + + + diff --git a/ProjectTransportation/ProjectTransportation/Reports/ChartReport.cs b/ProjectTransportation/ProjectTransportation/Reports/ChartReport.cs new file mode 100644 index 0000000..69194a7 --- /dev/null +++ b/ProjectTransportation/ProjectTransportation/Reports/ChartReport.cs @@ -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 _logger; + + public ChartReport(IGoToServiceRepository goToServiceRepository, ILogger 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(); + } +} diff --git a/ProjectTransportation/ProjectTransportation/Reports/DocReport.cs b/ProjectTransportation/ProjectTransportation/Reports/DocReport.cs new file mode 100644 index 0000000..7482dcc --- /dev/null +++ b/ProjectTransportation/ProjectTransportation/Reports/DocReport.cs @@ -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 _logger; + + public DocReport(IBusRepository busRepository, IEmployeeRepository employeeRepository, + IRouteListRepository routeListRepository, ILogger 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 GetBuses() + { + return [ + ["Госномер", "Модель"], + .. _busRepository + .ReadBuses() + .Select(x => new string[] { x.Licence_plate, x.Model }), + ]; + } + + private List GetEmployess() + { + return [ + ["Имя", "Фамилия", "Должность"], + .. _employeeRepository + .ReadEmployees() + .Select(x => new string[] { x.First_name, x.Last_name, x.Post.ToString() }), + ]; + } + + private List GetRouteLists() + { + return [ + ["Начало работы", "Конец работы"], + .. _routeListRepository + .ReadRouteLists() + .Select(x => new string[] { x.Route_start.ToString(), x.Route_finish.ToString() }), + ]; + } +} diff --git a/ProjectTransportation/ProjectTransportation/Reports/ExcelBuilder.cs b/ProjectTransportation/ProjectTransportation/Reports/ExcelBuilder.cs new file mode 100644 index 0000000..98004d2 --- /dev/null +++ b/ProjectTransportation/ProjectTransportation/Reports/ExcelBuilder.cs @@ -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 data) + { + if (columnsWidths == null || columnsWidths.Length == 0) + { + throw new ArgumentNullException(nameof(columnsWidths)); + } + + if (data == null || data.Count == 0) + { + throw new ArgumentNullException(nameof(data)); + } + + if (data.Any(x => x.Length != columnsWidths.Length)) + { + throw new InvalidOperationException("widths.Length != data.Length"); + } + + uint counter = 1; + int coef = 2; + _columns.Append(columnsWidths.Select(x => new Column + { + Min = counter, + Max = counter++, + Width = x * coef, + CustomWidth = true + })); + + for (var j = 0; j < data.First().Length; ++j) + { + CreateCell(j, _rowIndex, data.First()[j], StyleIndex.BoldTextWithBorder); + } + + _rowIndex++; + for (var i = 1; i < data.Count - 1; ++i) + { + for (var j = 0; j < data[i].Length; ++j) + { + CreateCell(j, _rowIndex, data[i][j], StyleIndex.SimpleTextWithBorder); + } + + _rowIndex++; + } + + for (var j = 0; j < data.Last().Length; ++j) + { + CreateCell(j, _rowIndex, data.Last()[j], StyleIndex.BoldTextWithBorder); + } + + _rowIndex++; + return this; + } + + public void Build() + { + using var spreadsheetDocument = SpreadsheetDocument.Create(_filePath, SpreadsheetDocumentType.Workbook); + var workbookpart = spreadsheetDocument.AddWorkbookPart(); + GenerateStyle(workbookpart); + workbookpart.Workbook = new Workbook(); + var worksheetPart = workbookpart.AddNewPart(); + worksheetPart.Worksheet = new Worksheet(); + if (_columns.HasChildren) + { + worksheetPart.Worksheet.Append(_columns); + } + + worksheetPart.Worksheet.Append(_sheetData); + var sheets = spreadsheetDocument.WorkbookPart!.Workbook.AppendChild(new Sheets()); + var sheet = new Sheet() + { + Id = spreadsheetDocument.WorkbookPart.GetIdOfPart(worksheetPart), + SheetId = 1, + Name = "Лист 1" + }; + + sheets.Append(sheet); + if (_mergeCells.HasChildren) + { + worksheetPart.Worksheet.InsertAfter(_mergeCells, worksheetPart.Worksheet.Elements().First()); + } + } + + private static void GenerateStyle(WorkbookPart workbookPart) + { + var workbookStylesPart = workbookPart.AddNewPart(); + workbookStylesPart.Stylesheet = new Stylesheet(); + + var fonts = new Fonts() { Count = 2, KnownFonts = BooleanValue.FromBoolean(true) }; + fonts.Append(new DocumentFormat.OpenXml.Spreadsheet.Font + { + FontSize = new FontSize() { Val = 11 }, + FontName = new FontName() { Val = "Calibri" }, + FontFamilyNumbering = new FontFamilyNumbering() { Val = 2 }, + FontScheme = new FontScheme() { Val = new EnumValue(FontSchemeValues.Minor) } + }); + fonts.Append(new DocumentFormat.OpenXml.Spreadsheet.Font + { + FontSize = new FontSize() { Val = 11 }, + FontName = new FontName() { Val = "Calibri" }, + FontFamilyNumbering = new FontFamilyNumbering() { Val = 2 }, + FontScheme = new FontScheme() + { + Val = new EnumValue(FontSchemeValues.Minor) + }, + Bold = new Bold() { Val = true } + }); + workbookStylesPart.Stylesheet.Append(fonts); + + // Default Fill + var fills = new Fills() { Count = 1 }; + fills.Append(new Fill + { + PatternFill = new PatternFill() + { + PatternType = new EnumValue(PatternValues.None) + } + }); + workbookStylesPart.Stylesheet.Append(fills); + + // Default Border + var borders = new Borders() { Count = 2 }; + borders.Append(new Border + { + LeftBorder = new LeftBorder(), + RightBorder = new RightBorder(), + TopBorder = new TopBorder(), + BottomBorder = new BottomBorder(), + DiagonalBorder = new DiagonalBorder() + }); + borders.Append(new Border + { + LeftBorder = new LeftBorder() { Style = BorderStyleValues.Thin }, + RightBorder = new RightBorder() { Style = BorderStyleValues.Thin }, + TopBorder = new TopBorder() { Style = BorderStyleValues.Thin }, + BottomBorder = new BottomBorder() { Style = BorderStyleValues.Thin }, + DiagonalBorder = new DiagonalBorder() + }); + workbookStylesPart.Stylesheet.Append(borders); + + // Default cell format and a date cell format + var cellFormats = new CellFormats() { Count = 4 }; + cellFormats.Append(new CellFormat + { + NumberFormatId = 0, + FormatId = 0, + FontId = 0, + BorderId = 0, + FillId = 0, + Alignment = new Alignment() + { + Horizontal = HorizontalAlignmentValues.Left, + Vertical = VerticalAlignmentValues.Center, + WrapText = true + } + }); + cellFormats.Append(new CellFormat + { + NumberFormatId = 0, + FormatId = 0, + FontId = 0, + BorderId = 1, + FillId = 0, + Alignment = new Alignment() + { + Horizontal = HorizontalAlignmentValues.Right, + Vertical = VerticalAlignmentValues.Center, + WrapText = true + } + }); + cellFormats.Append(new CellFormat + { + NumberFormatId = 0, + FormatId = 0, + FontId = 1, + BorderId = 0, + FillId = 0, + Alignment = new Alignment() + { + Horizontal = HorizontalAlignmentValues.Center, + Vertical = VerticalAlignmentValues.Center, + WrapText = true + } + }); + cellFormats.Append(new CellFormat + { + NumberFormatId = 0, + FormatId = 0, + FontId = 1, + BorderId = 1, + FillId = 0, + Alignment = new Alignment() + { + Horizontal = HorizontalAlignmentValues.Center, + Vertical = VerticalAlignmentValues.Center, + WrapText = true + } + }); + workbookStylesPart.Stylesheet.Append(cellFormats); + } + + private enum StyleIndex + { + SimpleTextWithoutBorder = 0, + SimpleTextWithBorder = 1, + BoldTextWithoutBorder = 2, + BoldTextWithBorder = 3 + } + + private void CreateCell(int columnIndex, uint rowIndex, string text, StyleIndex styleIndex) + { + var columnName = GetExcelColumnName(columnIndex); + var cellReference = columnName + rowIndex; + var row = _sheetData.Elements().FirstOrDefault(r => r.RowIndex! == rowIndex); + if (row == null) + { + row = new Row() { RowIndex = rowIndex }; + _sheetData.Append(row); + } + + var newCell = row.Elements() + .FirstOrDefault(c => c.CellReference != null && c.CellReference.Value == columnName + rowIndex); + if (newCell == null) + { + Cell? refCell = null; + foreach (Cell cell in row.Elements()) + { + if (cell.CellReference?.Value != null && cell.CellReference.Value.Length == cellReference.Length) + { + if (string.Compare(cell.CellReference.Value, cellReference, true) > 0) + { + refCell = cell; + break; + } + } + } + + newCell = new Cell() { CellReference = cellReference }; + row.InsertBefore(newCell, refCell); + } + + newCell.CellValue = new CellValue(text); + newCell.DataType = CellValues.String; + newCell.StyleIndex = (uint)styleIndex; + } + + private static string GetExcelColumnName(int columnNumber) + { + columnNumber += 1; + int dividend = columnNumber; + string columnName = string.Empty; + int modulo; + + while (dividend > 0) + { + modulo = (dividend - 1) % 26; + columnName = Convert.ToChar(65 + modulo).ToString() + columnName; + dividend = (dividend - modulo) / 26; + } + + return columnName; + } +} diff --git a/ProjectTransportation/ProjectTransportation/Reports/PdfBuilder.cs b/ProjectTransportation/ProjectTransportation/Reports/PdfBuilder.cs new file mode 100644 index 0000000..0792b13 --- /dev/null +++ b/ProjectTransportation/ProjectTransportation/Reports/PdfBuilder.cs @@ -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; + } +} diff --git a/ProjectTransportation/ProjectTransportation/Reports/TableReport.cs b/ProjectTransportation/ProjectTransportation/Reports/TableReport.cs new file mode 100644 index 0000000..a2b8edf --- /dev/null +++ b/ProjectTransportation/ProjectTransportation/Reports/TableReport.cs @@ -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 _logger; + + internal static readonly string[] item = ["Работник", "Автобус", "Дата", "Отработано часов", "Потрачено на тех обслуживание"]; + + public TableReport(IStartingShiftRepository startingShiftRepository, + IGoToServiceRepository goToServiceRepository, ILogger 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 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() { 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(); + } +} diff --git a/ProjectTransportation/ProjectTransportation/Reports/WordBuilder.cs b/ProjectTransportation/ProjectTransportation/Reports/WordBuilder.cs new file mode 100644 index 0000000..9b8c09e --- /dev/null +++ b/ProjectTransportation/ProjectTransportation/Reports/WordBuilder.cs @@ -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 data) + { + if (widths == null || widths.Length == 0) + { + throw new ArgumentNullException(nameof(widths)); + } + + if (data == null || data.Count == 0) + { + throw new ArgumentNullException(nameof(data)); + } + + if (data.Any(x => x.Length != widths.Length)) + { + throw new InvalidOperationException("widths.Length != data.Length"); + } + + var table = new Table(); + table.AppendChild(new TableProperties( + new TableBorders( + new TopBorder() { Val = new EnumValue(BorderValues.Single), Size = 12 }, + new BottomBorder() { Val = new EnumValue(BorderValues.Single), Size = 12 }, + new LeftBorder() { Val = new EnumValue(BorderValues.Single), Size = 12 }, + new RightBorder() { Val = new EnumValue(BorderValues.Single), Size = 12 }, + new InsideHorizontalBorder() { Val = new EnumValue(BorderValues.Single), Size = 12 }, + new InsideVerticalBorder() { Val = new EnumValue(BorderValues.Single), Size = 12 } + ) + )); + + // Заголовок + var tr = new TableRow(); + for (var j = 0; j < widths.Length; ++j) + { + tr.Append(new TableCell( + new TableCellProperties(new TableCellWidth() { Width = widths[j].ToString() }), + new Paragraph(new Run(new RunProperties(new Bold()), new Text(data.First()[j]))))); + } + table.Append(tr); + + // Данные + table.Append(data.Skip(1).Select(x => + new TableRow(x.Select(y => new TableCell(new Paragraph(new Run(new Text(y)))))))); + + _body.Append(table); + + return this; + } + + public void Build() + { + using var wordDocument = WordprocessingDocument.Create(_filePath, WordprocessingDocumentType.Document); + var mainPart = wordDocument.AddMainDocumentPart(); + mainPart.Document = _document; + } +} diff --git a/ProjectTransportation/ProjectTransportation/Repositories/Implementations/StartingShiftRepository.cs b/ProjectTransportation/ProjectTransportation/Repositories/Implementations/StartingShiftRepository.cs index 217327c..e2042d2 100644 --- a/ProjectTransportation/ProjectTransportation/Repositories/Implementations/StartingShiftRepository.cs +++ b/ProjectTransportation/ProjectTransportation/Repositories/Implementations/StartingShiftRepository.cs @@ -58,10 +58,14 @@ VALUES (@Starting_shift_id, @Employee_id, @Work_time)"; try { using var connection = new NpgsqlConnection(_connectionString.ConnectionString); - var querySelect = @"SELECT * FROM starting_shift"; - var startingShifts = connection.Query(querySelect); + var 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(querySelect); _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) { diff --git a/ProjectTransportation/ProjectTransportation/Resources/avto.jpg b/ProjectTransportation/ProjectTransportation/Resources/avto.jpg new file mode 100644 index 0000000..62580e8 Binary files /dev/null and b/ProjectTransportation/ProjectTransportation/Resources/avto.jpg differ