diff --git a/ProjectSchedule/ProjectSchedule/Entities/CurriculumSupplement.cs b/ProjectSchedule/ProjectSchedule/Entities/CurriculumSupplement.cs index 0aff420..101db46 100644 --- a/ProjectSchedule/ProjectSchedule/Entities/CurriculumSupplement.cs +++ b/ProjectSchedule/ProjectSchedule/Entities/CurriculumSupplement.cs @@ -27,4 +27,18 @@ public class CurriculumSupplement DisciplineCurriculumSupplements = disciplineCurriculumSupplements }; } + + public static CurriculumSupplement CreateOpeartion(TempDisciplineCurriculumSupplement tempDisciplineCurriculumSupplement, + IEnumerable disciplineCurriculumSupplements) + { + return new CurriculumSupplement + { + Id = tempDisciplineCurriculumSupplement.Id, + GroupStudentsId = tempDisciplineCurriculumSupplement.GroupStudentsId, + NameCurriculum = tempDisciplineCurriculumSupplement.NameCurriculum, + Semester = tempDisciplineCurriculumSupplement.Semester, + DateAdoptionPlan = tempDisciplineCurriculumSupplement.DateAdoptionPlan, + DisciplineCurriculumSupplements = disciplineCurriculumSupplements + }; + } } \ No newline at end of file diff --git a/ProjectSchedule/ProjectSchedule/Entities/TempDisciplineCurriculumSupplement.cs b/ProjectSchedule/ProjectSchedule/Entities/TempDisciplineCurriculumSupplement.cs new file mode 100644 index 0000000..88375ac --- /dev/null +++ b/ProjectSchedule/ProjectSchedule/Entities/TempDisciplineCurriculumSupplement.cs @@ -0,0 +1,20 @@ +namespace ProjectSchedule.Entities; + +public class TempDisciplineCurriculumSupplement +{ + public int Id { get; private set; } + + public int GroupStudentsId { get; private set; } + + public string NameCurriculum { get; private set; } = string.Empty; + + public string Semester { get; private set; } = string.Empty; + + public DateTime DateAdoptionPlan { get; private set; } + + public int DisciplineId { get; private set; } + + public int QuantityLectures { get; private set; } + + public int QuantityPractices { get; private set; } +} \ No newline at end of file diff --git a/ProjectSchedule/ProjectSchedule/FormSchedule.Designer.cs b/ProjectSchedule/ProjectSchedule/FormSchedule.Designer.cs index 620b4ba..a9813f5 100644 --- a/ProjectSchedule/ProjectSchedule/FormSchedule.Designer.cs +++ b/ProjectSchedule/ProjectSchedule/FormSchedule.Designer.cs @@ -38,6 +38,9 @@ сompilingScheduleToolStripMenuItem = new ToolStripMenuItem(); сurriculumSupplementToolStripMenuItem = new ToolStripMenuItem(); reportsToolStripMenuItem = new ToolStripMenuItem(); + directoryReportToolStripMenuItem = new ToolStripMenuItem(); + disciplineReportToolStripMenuItem = new ToolStripMenuItem(); + distributionDisciplinesToolStripMenuItem = new ToolStripMenuItem(); menuStrip.SuspendLayout(); SuspendLayout(); // @@ -61,28 +64,28 @@ // audiencesToolStripMenuItem // audiencesToolStripMenuItem.Name = "audiencesToolStripMenuItem"; - audiencesToolStripMenuItem.Size = new Size(224, 26); + audiencesToolStripMenuItem.Size = new Size(216, 26); audiencesToolStripMenuItem.Text = "Аудитории"; audiencesToolStripMenuItem.Click += AudiencesToolStripMenuItem_Click; // // disciplinesToolStripMenuItem // disciplinesToolStripMenuItem.Name = "disciplinesToolStripMenuItem"; - disciplinesToolStripMenuItem.Size = new Size(224, 26); + disciplinesToolStripMenuItem.Size = new Size(216, 26); disciplinesToolStripMenuItem.Text = "Дисциплины"; disciplinesToolStripMenuItem.Click += DisciplinesToolStripMenuItem_Click; // // educatorsToolStripMenuItem // educatorsToolStripMenuItem.Name = "educatorsToolStripMenuItem"; - educatorsToolStripMenuItem.Size = new Size(224, 26); + educatorsToolStripMenuItem.Size = new Size(216, 26); educatorsToolStripMenuItem.Text = "Преподаватели"; educatorsToolStripMenuItem.Click += EducatorsToolStripMenuItem_Click; // // groupsStudentsToolStripMenuItem // groupsStudentsToolStripMenuItem.Name = "groupsStudentsToolStripMenuItem"; - groupsStudentsToolStripMenuItem.Size = new Size(224, 26); + groupsStudentsToolStripMenuItem.Size = new Size(216, 26); groupsStudentsToolStripMenuItem.Text = "Группы студентов"; groupsStudentsToolStripMenuItem.Click += GroupsStudentsToolStripMenuItem_Click; // @@ -108,11 +111,36 @@ сurriculumSupplementToolStripMenuItem.Click += CurriculumSupplementToolStripMenuItem_Click; // // reportsToolStripMenuItem - // + // + reportsToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { directoryReportToolStripMenuItem, disciplineReportToolStripMenuItem, distributionDisciplinesToolStripMenuItem }); reportsToolStripMenuItem.Name = "reportsToolStripMenuItem"; reportsToolStripMenuItem.Size = new Size(73, 24); reportsToolStripMenuItem.Text = "Отчёты"; + // + // directoryReportToolStripMenuItem // + directoryReportToolStripMenuItem.Name = "directoryReportToolStripMenuItem"; + directoryReportToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.W; + directoryReportToolStripMenuItem.Size = new Size(350, 26); + directoryReportToolStripMenuItem.Text = "Документ со справочниками"; + directoryReportToolStripMenuItem.Click += DirectoryReportToolStripMenuItem_Click; + // + // disciplineReportToolStripMenuItem + // + disciplineReportToolStripMenuItem.Name = "disciplineReportToolStripMenuItem"; + disciplineReportToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.E; + disciplineReportToolStripMenuItem.Size = new Size(350, 26); + disciplineReportToolStripMenuItem.Text = "Прохождение дисциплин"; + disciplineReportToolStripMenuItem.Click += DisciplineReportToolStripMenuItem_Click; + // + // distributionDisciplinesToolStripMenuItem + // + distributionDisciplinesToolStripMenuItem.Name = "distributionDisciplinesToolStripMenuItem"; + distributionDisciplinesToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.P; + distributionDisciplinesToolStripMenuItem.Size = new Size(350, 26); + distributionDisciplinesToolStripMenuItem.Text = "Распределение дисциплин"; + distributionDisciplinesToolStripMenuItem.Click += DistributionDisciplinesToolStripMenuItem_Click; + // // FormSchedule // AutoScaleDimensions = new SizeF(8F, 20F); @@ -143,5 +171,8 @@ private ToolStripMenuItem сompilingScheduleToolStripMenuItem; private ToolStripMenuItem reportsToolStripMenuItem; private ToolStripMenuItem сurriculumSupplementToolStripMenuItem; + private ToolStripMenuItem directoryReportToolStripMenuItem; + private ToolStripMenuItem disciplineReportToolStripMenuItem; + private ToolStripMenuItem distributionDisciplinesToolStripMenuItem; } } \ No newline at end of file diff --git a/ProjectSchedule/ProjectSchedule/FormSchedule.cs b/ProjectSchedule/ProjectSchedule/FormSchedule.cs index c016808..b039210 100644 --- a/ProjectSchedule/ProjectSchedule/FormSchedule.cs +++ b/ProjectSchedule/ProjectSchedule/FormSchedule.cs @@ -85,5 +85,41 @@ namespace ProjectSchedule MessageBox.Show(ex.Message, " ", MessageBoxButtons.OK, MessageBoxIcon.Error); } } + + private void DirectoryReportToolStripMenuItem_Click(object sender, EventArgs e) + { + try + { + _container.Resolve().ShowDialog(); + } + catch (Exception ex) + { + MessageBox.Show(ex.Message, " ", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + + private void DisciplineReportToolStripMenuItem_Click(object sender, EventArgs e) + { + try + { + _container.Resolve().ShowDialog(); + } + catch (Exception ex) + { + MessageBox.Show(ex.Message, " ", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + + private void DistributionDisciplinesToolStripMenuItem_Click(object sender, EventArgs e) + { + try + { + _container.Resolve().ShowDialog(); + } + catch (Exception ex) + { + MessageBox.Show(ex.Message, " ", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } } } \ No newline at end of file diff --git a/ProjectSchedule/ProjectSchedule/Forms/FormCurriculumSupplement.cs b/ProjectSchedule/ProjectSchedule/Forms/FormCurriculumSupplement.cs index 2bec308..1318d3c 100644 --- a/ProjectSchedule/ProjectSchedule/Forms/FormCurriculumSupplement.cs +++ b/ProjectSchedule/ProjectSchedule/Forms/FormCurriculumSupplement.cs @@ -63,7 +63,8 @@ namespace ProjectSchedule.Forms Convert.ToInt32(row.Cells["ColumnQuantityPractices"].Value))); } - return list; + return list.GroupBy(x => x.DisciplineId, x => new { x.QuantityLectures, x.QuantityPractices }, (id, group) => + DisciplineCurriculumSupplement.CreateElement(0, id, group.Sum(x => x.QuantityLectures), group.Sum(x => x.QuantityPractices))).ToList(); } } } \ No newline at end of file diff --git a/ProjectSchedule/ProjectSchedule/Forms/FormDirectoryReport.Designer.cs b/ProjectSchedule/ProjectSchedule/Forms/FormDirectoryReport.Designer.cs new file mode 100644 index 0000000..c4846e5 --- /dev/null +++ b/ProjectSchedule/ProjectSchedule/Forms/FormDirectoryReport.Designer.cs @@ -0,0 +1,113 @@ +namespace ProjectSchedule.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() + { + checkBoxAudiences = new CheckBox(); + checkBoxDisciplines = new CheckBox(); + checkBoxEducators = new CheckBox(); + checkBoxGroupsStudents = new CheckBox(); + buttonBuild = new Button(); + SuspendLayout(); + // + // checkBoxAudiences + // + checkBoxAudiences.AutoSize = true; + checkBoxAudiences.Location = new Point(27, 12); + checkBoxAudiences.Name = "checkBoxAudiences"; + checkBoxAudiences.Size = new Size(107, 24); + checkBoxAudiences.TabIndex = 0; + checkBoxAudiences.Text = "Аудитории"; + checkBoxAudiences.UseVisualStyleBackColor = true; + // + // checkBoxDisciplines + // + checkBoxDisciplines.AutoSize = true; + checkBoxDisciplines.Location = new Point(27, 42); + checkBoxDisciplines.Name = "checkBoxDisciplines"; + checkBoxDisciplines.Size = new Size(121, 24); + checkBoxDisciplines.TabIndex = 1; + checkBoxDisciplines.Text = "Дисциплины"; + checkBoxDisciplines.UseVisualStyleBackColor = true; + // + // checkBoxEducators + // + checkBoxEducators.AutoSize = true; + checkBoxEducators.Location = new Point(27, 72); + checkBoxEducators.Name = "checkBoxEducators"; + checkBoxEducators.Size = new Size(140, 24); + checkBoxEducators.TabIndex = 2; + checkBoxEducators.Text = "Преподаватели"; + checkBoxEducators.UseVisualStyleBackColor = true; + // + // checkBoxGroupsStudents + // + checkBoxGroupsStudents.AutoSize = true; + checkBoxGroupsStudents.Location = new Point(27, 102); + checkBoxGroupsStudents.Name = "checkBoxGroupsStudents"; + checkBoxGroupsStudents.Size = new Size(155, 24); + checkBoxGroupsStudents.TabIndex = 3; + checkBoxGroupsStudents.Text = "Группы студентов"; + checkBoxGroupsStudents.UseVisualStyleBackColor = true; + // + // buttonBuild + // + buttonBuild.Location = new Point(209, 53); + buttonBuild.Name = "buttonBuild"; + buttonBuild.Size = new Size(126, 29); + buttonBuild.TabIndex = 4; + buttonBuild.Text = "Сформировать"; + buttonBuild.UseVisualStyleBackColor = true; + buttonBuild.Click += ButtonBuild_Click; + // + // FormDirectoryReport + // + AutoScaleDimensions = new SizeF(8F, 20F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(372, 138); + Controls.Add(buttonBuild); + Controls.Add(checkBoxGroupsStudents); + Controls.Add(checkBoxEducators); + Controls.Add(checkBoxDisciplines); + Controls.Add(checkBoxAudiences); + Name = "FormDirectoryReport"; + StartPosition = FormStartPosition.CenterParent; + Text = "Выгрузка справочников"; + ResumeLayout(false); + PerformLayout(); + } + + #endregion + + private CheckBox checkBoxAudiences; + private CheckBox checkBoxDisciplines; + private CheckBox checkBoxEducators; + private CheckBox checkBoxGroupsStudents; + private Button buttonBuild; + } +} \ No newline at end of file diff --git a/ProjectSchedule/ProjectSchedule/Forms/FormDirectoryReport.cs b/ProjectSchedule/ProjectSchedule/Forms/FormDirectoryReport.cs new file mode 100644 index 0000000..6649e87 --- /dev/null +++ b/ProjectSchedule/ProjectSchedule/Forms/FormDirectoryReport.cs @@ -0,0 +1,55 @@ +using ProjectSchedule.Reports; +using Unity; + +namespace ProjectSchedule.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 (!checkBoxAudiences.Checked && !checkBoxDisciplines.Checked + && !checkBoxEducators.Checked && !checkBoxGroupsStudents.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, checkBoxAudiences.Checked, + checkBoxDisciplines.Checked, checkBoxEducators.Checked, checkBoxGroupsStudents.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); + } + } + } +} \ No newline at end of file diff --git a/ProjectSchedule/ProjectSchedule/Forms/FormDirectoryReport.resx b/ProjectSchedule/ProjectSchedule/Forms/FormDirectoryReport.resx new file mode 100644 index 0000000..af32865 --- /dev/null +++ b/ProjectSchedule/ProjectSchedule/Forms/FormDirectoryReport.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/ProjectSchedule/ProjectSchedule/Forms/FormDisciplineReport.Designer.cs b/ProjectSchedule/ProjectSchedule/Forms/FormDisciplineReport.Designer.cs new file mode 100644 index 0000000..6fdd5cd --- /dev/null +++ b/ProjectSchedule/ProjectSchedule/Forms/FormDisciplineReport.Designer.cs @@ -0,0 +1,165 @@ +namespace ProjectSchedule.Forms +{ + partial class FormDisciplineReport + { + /// + /// 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() + { + dateTimePickerDateBegin = new DateTimePicker(); + dateTimePickerDateEnd = new DateTimePicker(); + textBoxFilePath = new TextBox(); + buttonSelectFilePath = new Button(); + labelPathFile = new Label(); + labelDateBegin = new Label(); + labelDateEnd = new Label(); + labelDiscipline = new Label(); + comboBoxDiscipline = new ComboBox(); + buttonMakeReport = new Button(); + SuspendLayout(); + // + // dateTimePickerDateBegin + // + dateTimePickerDateBegin.Location = new Point(155, 109); + dateTimePickerDateBegin.Name = "dateTimePickerDateBegin"; + dateTimePickerDateBegin.Size = new Size(250, 27); + dateTimePickerDateBegin.TabIndex = 0; + // + // dateTimePickerDateEnd + // + dateTimePickerDateEnd.Location = new Point(155, 147); + dateTimePickerDateEnd.Name = "dateTimePickerDateEnd"; + dateTimePickerDateEnd.Size = new Size(250, 27); + dateTimePickerDateEnd.TabIndex = 1; + // + // textBoxFilePath + // + textBoxFilePath.Location = new Point(155, 29); + textBoxFilePath.Name = "textBoxFilePath"; + textBoxFilePath.ReadOnly = true; + textBoxFilePath.Size = new Size(192, 27); + textBoxFilePath.TabIndex = 2; + // + // buttonSelectFilePath + // + buttonSelectFilePath.Location = new Point(353, 29); + buttonSelectFilePath.Name = "buttonSelectFilePath"; + buttonSelectFilePath.Size = new Size(52, 29); + buttonSelectFilePath.TabIndex = 4; + buttonSelectFilePath.Text = ".."; + buttonSelectFilePath.UseVisualStyleBackColor = true; + buttonSelectFilePath.Click += ButtonSelectFilePath_Click; + // + // labelPathFile + // + labelPathFile.AutoSize = true; + labelPathFile.Location = new Point(31, 32); + labelPathFile.Name = "labelPathFile"; + labelPathFile.Size = new Size(112, 20); + labelPathFile.TabIndex = 6; + labelPathFile.Text = "Путь до файла:"; + // + // labelDateBegin + // + labelDateBegin.AutoSize = true; + labelDateBegin.Location = new Point(31, 114); + labelDateBegin.Name = "labelDateBegin"; + labelDateBegin.Size = new Size(97, 20); + labelDateBegin.TabIndex = 7; + labelDateBegin.Text = "Дата начала:"; + // + // labelDateEnd + // + labelDateEnd.AutoSize = true; + labelDateEnd.Location = new Point(31, 152); + labelDateEnd.Name = "labelDateEnd"; + labelDateEnd.Size = new Size(90, 20); + labelDateEnd.TabIndex = 8; + labelDateEnd.Text = "Дата конца:"; + // + // labelDiscipline + // + labelDiscipline.AutoSize = true; + labelDiscipline.Location = new Point(31, 73); + labelDiscipline.Name = "labelDiscipline"; + labelDiscipline.Size = new Size(99, 20); + labelDiscipline.TabIndex = 9; + labelDiscipline.Text = "Дисциплина:"; + // + // comboBoxDiscipline + // + comboBoxDiscipline.DropDownStyle = ComboBoxStyle.DropDownList; + comboBoxDiscipline.FormattingEnabled = true; + comboBoxDiscipline.Location = new Point(155, 70); + comboBoxDiscipline.Name = "comboBoxDiscipline"; + comboBoxDiscipline.Size = new Size(250, 28); + comboBoxDiscipline.TabIndex = 10; + // + // buttonMakeReport + // + buttonMakeReport.Location = new Point(107, 201); + buttonMakeReport.Name = "buttonMakeReport"; + buttonMakeReport.Size = new Size(208, 29); + buttonMakeReport.TabIndex = 11; + buttonMakeReport.Text = "Сформировать"; + buttonMakeReport.UseVisualStyleBackColor = true; + buttonMakeReport.Click += ButtonMakeReport_Click; + // + // FormDisciplineReport + // + AutoScaleDimensions = new SizeF(8F, 20F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(432, 242); + Controls.Add(buttonMakeReport); + Controls.Add(comboBoxDiscipline); + Controls.Add(labelDiscipline); + Controls.Add(labelDateEnd); + Controls.Add(labelDateBegin); + Controls.Add(labelPathFile); + Controls.Add(buttonSelectFilePath); + Controls.Add(textBoxFilePath); + Controls.Add(dateTimePickerDateEnd); + Controls.Add(dateTimePickerDateBegin); + Name = "FormDisciplineReport"; + StartPosition = FormStartPosition.CenterParent; + Text = "Отчёт по дисциплине"; + ResumeLayout(false); + PerformLayout(); + } + + #endregion + + private DateTimePicker dateTimePickerDateBegin; + private DateTimePicker dateTimePickerDateEnd; + private TextBox textBoxFilePath; + private Button buttonSelectFilePath; + private Label labelPathFile; + private Label labelDateBegin; + private Label labelDateEnd; + private Label labelDiscipline; + private ComboBox comboBoxDiscipline; + private Button buttonMakeReport; + } +} \ No newline at end of file diff --git a/ProjectSchedule/ProjectSchedule/Forms/FormDisciplineReport.cs b/ProjectSchedule/ProjectSchedule/Forms/FormDisciplineReport.cs new file mode 100644 index 0000000..3c214c4 --- /dev/null +++ b/ProjectSchedule/ProjectSchedule/Forms/FormDisciplineReport.cs @@ -0,0 +1,74 @@ +using ProjectSchedule.Reports; +using ProjectSchedule.Repositories; +using Unity; + +namespace ProjectSchedule.Forms +{ + public partial class FormDisciplineReport : Form + { + private readonly IUnityContainer _container; + + public FormDisciplineReport(IUnityContainer container, IDisciplineRepository disciplineRepository) + { + InitializeComponent(); + _container = container ?? + throw new ArgumentNullException(nameof(container)); + + comboBoxDiscipline.DataSource = disciplineRepository.ReadDisciplines(); + comboBoxDiscipline.DisplayMember = "NameDiscipline"; + comboBoxDiscipline.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 (comboBoxDiscipline.SelectedIndex < 0) + { + throw new Exception("Не выбрана дисциплина"); + } + + if (dateTimePickerDateEnd.Value <= dateTimePickerDateBegin.Value) + { + throw new Exception("Дата начала должна быть раньше даты окончания"); + } + + if (_container.Resolve().CreateTable(textBoxFilePath.Text, + (int)comboBoxDiscipline.SelectedValue!, dateTimePickerDateBegin.Value, dateTimePickerDateEnd.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); + } + } + } +} \ No newline at end of file diff --git a/ProjectSchedule/ProjectSchedule/Forms/FormDisciplineReport.resx b/ProjectSchedule/ProjectSchedule/Forms/FormDisciplineReport.resx new file mode 100644 index 0000000..af32865 --- /dev/null +++ b/ProjectSchedule/ProjectSchedule/Forms/FormDisciplineReport.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/ProjectSchedule/ProjectSchedule/Forms/FormDistributionDisciplinesReport.Designer.cs b/ProjectSchedule/ProjectSchedule/Forms/FormDistributionDisciplinesReport.Designer.cs new file mode 100644 index 0000000..fdecec1 --- /dev/null +++ b/ProjectSchedule/ProjectSchedule/Forms/FormDistributionDisciplinesReport.Designer.cs @@ -0,0 +1,108 @@ +namespace ProjectSchedule.Forms +{ + partial class FormDistributionDisciplinesReport + { + /// + /// 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() + { + labelFileName = new Label(); + dateTimePicker = new DateTimePicker(); + labelDate = new Label(); + buttonSelectFileName = new Button(); + buttonCreate = new Button(); + SuspendLayout(); + // + // labelFileName + // + labelFileName.AutoSize = true; + labelFileName.Location = new Point(173, 36); + labelFileName.Name = "labelFileName"; + labelFileName.Size = new Size(45, 20); + labelFileName.TabIndex = 0; + labelFileName.Text = "Файл"; + // + // dateTimePicker + // + dateTimePicker.Location = new Point(173, 99); + dateTimePicker.Name = "dateTimePicker"; + dateTimePicker.Size = new Size(229, 27); + dateTimePicker.TabIndex = 1; + // + // labelDate + // + labelDate.AutoSize = true; + labelDate.Location = new Point(30, 104); + labelDate.Name = "labelDate"; + labelDate.Size = new Size(44, 20); + labelDate.TabIndex = 2; + labelDate.Text = "Дата:"; + // + // buttonSelectFileName + // + buttonSelectFileName.Location = new Point(30, 32); + buttonSelectFileName.Name = "buttonSelectFileName"; + buttonSelectFileName.Size = new Size(94, 29); + buttonSelectFileName.TabIndex = 3; + buttonSelectFileName.Text = "Выбрать"; + buttonSelectFileName.UseVisualStyleBackColor = true; + buttonSelectFileName.Click += ButtonSelectFileName_Click; + // + // buttonCreate + // + buttonCreate.Location = new Point(156, 167); + buttonCreate.Name = "buttonCreate"; + buttonCreate.Size = new Size(126, 29); + buttonCreate.TabIndex = 5; + buttonCreate.Text = "Сформировать"; + buttonCreate.UseVisualStyleBackColor = true; + buttonCreate.Click += ButtonCreate_Click; + // + // FormDistributionDisciplinesReport + // + AutoScaleDimensions = new SizeF(8F, 20F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(433, 208); + Controls.Add(buttonCreate); + Controls.Add(buttonSelectFileName); + Controls.Add(labelDate); + Controls.Add(dateTimePicker); + Controls.Add(labelFileName); + Name = "FormDistributionDisciplinesReport"; + StartPosition = FormStartPosition.CenterParent; + Text = "Распределение дисциплин"; + ResumeLayout(false); + PerformLayout(); + } + + #endregion + + private Label labelFileName; + private DateTimePicker dateTimePicker; + private Label labelDate; + private Button buttonSelectFileName; + private Button buttonCreate; + } +} \ No newline at end of file diff --git a/ProjectSchedule/ProjectSchedule/Forms/FormDistributionDisciplinesReport.cs b/ProjectSchedule/ProjectSchedule/Forms/FormDistributionDisciplinesReport.cs new file mode 100644 index 0000000..0968ea1 --- /dev/null +++ b/ProjectSchedule/ProjectSchedule/Forms/FormDistributionDisciplinesReport.cs @@ -0,0 +1,59 @@ +using ProjectSchedule.Reports; +using Unity; + +namespace ProjectSchedule.Forms +{ + public partial class FormDistributionDisciplinesReport : Form + { + private string _fileName = string.Empty; + + private readonly IUnityContainer _container; + + public FormDistributionDisciplinesReport(IUnityContainer container) + { + InitializeComponent(); + _container = container ?? + throw new ArgumentNullException(nameof(container)); + } + + private void ButtonSelectFileName_Click(object sender, EventArgs e) + { + var sfd = new SaveFileDialog() + { + Filter = "Pdf Files | *.pdf" + }; + + if (sfd.ShowDialog() == DialogResult.OK) + { + _fileName = sfd.FileName; + labelFileName.Text = Path.GetFileName(_fileName); + } + } + + private void ButtonCreate_Click(object sender, EventArgs e) + { + try + { + if (string.IsNullOrWhiteSpace(_fileName)) + { + throw new Exception("Отсутствует имя файла для отчета"); + } + + if (_container.Resolve().CreateChart(_fileName, dateTimePicker.Value)) + { + MessageBox.Show("Документ сформирован", "Формирование документа", + MessageBoxButtons.OK, MessageBoxIcon.Information); + } + else + { + MessageBox.Show("Возникли ошибки при формировании документа. Подробности в логах", + "Формирование документа", MessageBoxButtons.OK, MessageBoxIcon.Information); + } + } + catch (Exception ex) + { + MessageBox.Show(ex.Message, "Ошибка при создании очета", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + } +} \ No newline at end of file diff --git a/ProjectSchedule/ProjectSchedule/Forms/FormDistributionDisciplinesReport.resx b/ProjectSchedule/ProjectSchedule/Forms/FormDistributionDisciplinesReport.resx new file mode 100644 index 0000000..af32865 --- /dev/null +++ b/ProjectSchedule/ProjectSchedule/Forms/FormDistributionDisciplinesReport.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/ProjectSchedule/ProjectSchedule/ProjectSchedule.csproj b/ProjectSchedule/ProjectSchedule/ProjectSchedule.csproj index 76895bb..716f47e 100644 --- a/ProjectSchedule/ProjectSchedule/ProjectSchedule.csproj +++ b/ProjectSchedule/ProjectSchedule/ProjectSchedule.csproj @@ -10,11 +10,13 @@ + + diff --git a/ProjectSchedule/ProjectSchedule/Reports/ChartReport.cs b/ProjectSchedule/ProjectSchedule/Reports/ChartReport.cs new file mode 100644 index 0000000..2b1f35d --- /dev/null +++ b/ProjectSchedule/ProjectSchedule/Reports/ChartReport.cs @@ -0,0 +1,47 @@ +using Microsoft.Extensions.Logging; +using ProjectSchedule.Repositories; + +namespace ProjectSchedule.Reports; + +internal class ChartReport +{ + private readonly ICompilingScheduleRepository _compilingScheduleRepository; + + private readonly ILogger _logger; + + public ChartReport(ICompilingScheduleRepository compilingScheduleRepository, ILogger logger) + { + _compilingScheduleRepository = compilingScheduleRepository ?? + throw new ArgumentNullException(nameof(compilingScheduleRepository)); + _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 _compilingScheduleRepository + .ReadCompilingSchedules() + .Where(x => x.DateDay.Date == dateTime.Date) + .GroupBy(x => x.GroupStudentsId, (key, group) => new { Id = key, Count = group.Count() }) + .Select(x => (x.Id.ToString(), (double)x.Count)) + .ToList(); + } +} \ No newline at end of file diff --git a/ProjectSchedule/ProjectSchedule/Reports/DocReport.cs b/ProjectSchedule/ProjectSchedule/Reports/DocReport.cs new file mode 100644 index 0000000..0918c02 --- /dev/null +++ b/ProjectSchedule/ProjectSchedule/Reports/DocReport.cs @@ -0,0 +1,116 @@ +using Microsoft.Extensions.Logging; +using ProjectSchedule.Repositories; + +namespace ProjectSchedule.Reports; + +internal class DocReport +{ + private readonly IAudienceRepository _audienceRepository; + + private readonly IDisciplineRepository _disciplineRepository; + + private readonly IEducatorRepository _educatorRepository; + + private readonly IGroupStudentsRepository _groupStudentsRepository; + + private readonly ILogger _logger; + + public DocReport(IAudienceRepository audienceRepository, + IDisciplineRepository disciplineRepository, IEducatorRepository educatorRepository, + IGroupStudentsRepository groupStudentsRepository, ILogger logger) + { + _audienceRepository = audienceRepository ?? + throw new ArgumentNullException(nameof(audienceRepository)); + _disciplineRepository = disciplineRepository ?? + throw new ArgumentNullException(nameof(disciplineRepository)); + _educatorRepository = educatorRepository ?? + throw new ArgumentNullException(nameof(educatorRepository)); + _groupStudentsRepository = groupStudentsRepository ?? + throw new ArgumentNullException(nameof(groupStudentsRepository)); + _logger = logger ?? + throw new ArgumentNullException(nameof(logger)); + } + + public bool CreateDoc(string filePath, bool includeAudiences, bool includeDisciplines, + bool includeEducators, bool includeGroupsStudents) + { + try + { + var builder = new WordBuilder(filePath) + .AddHeader("Документ со справочниками"); + + if (includeAudiences) + { + builder.AddParagraph("Аудитории") + .AddTable([1200, 2400, 1200], GetAudiences()); + } + + if (includeDisciplines) + { + builder.AddParagraph("Дисциплины") + .AddTable([2400], GetDisciplines()); + } + + if (includeEducators) + { + builder.AddParagraph("Преподаватели") + .AddTable([2400, 2400, 2400], GetEducators()); + } + + if (includeGroupsStudents) + { + builder.AddParagraph("Группы студентов") + .AddTable([1200, 1200, 1200], GetGroupsStudents()); + } + + builder.Build(); + + return true; + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка при формировании документа"); + return false; + } + } + + private List GetAudiences() + { + return [ + ["Номер аудитории", "Тип аудитории", "Количество мест"], + .. _audienceRepository + .ReadAudiences() + .Select(x => new string[] { x.NumberAudience, x.TypeAudience.ToString(), x.QuantitySeats.ToString() }), + ]; + } + + private List GetDisciplines() + { + return [ + ["Название дисциплины"], + .. _disciplineRepository + .ReadDisciplines() + .Select(x => new string[] { x.NameDiscipline }), + ]; + } + + private List GetEducators() + { + return [ + ["Фамилия", "Имя", "Отчество"], + .. _educatorRepository + .ReadEducators() + .Select(x => new string[] { x.Surname, x.Name, x.Patronymic }), + ]; + } + + private List GetGroupsStudents() + { + return [ + ["Аббревиатура группы", "Номер группы", "Количество студентов"], + .. _groupStudentsRepository + .ReadGroupsStudents() + .Select(x => new string[] { x.AbbreviationGroup, x.GroupNumber, x.QuantityStudents.ToString() }), + ]; + } +} \ No newline at end of file diff --git a/ProjectSchedule/ProjectSchedule/Reports/ExcelBuilder.cs b/ProjectSchedule/ProjectSchedule/Reports/ExcelBuilder.cs new file mode 100644 index 0000000..cdb8b3a --- /dev/null +++ b/ProjectSchedule/ProjectSchedule/Reports/ExcelBuilder.cs @@ -0,0 +1,322 @@ +using DocumentFormat.OpenXml; +using DocumentFormat.OpenXml.Packaging; +using DocumentFormat.OpenXml.Spreadsheet; + +namespace ProjectSchedule.Reports; + +internal 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("columnsWidths.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; + } +} \ No newline at end of file diff --git a/ProjectSchedule/ProjectSchedule/Reports/PdfBuilder.cs b/ProjectSchedule/ProjectSchedule/Reports/PdfBuilder.cs new file mode 100644 index 0000000..277e372 --- /dev/null +++ b/ProjectSchedule/ProjectSchedule/Reports/PdfBuilder.cs @@ -0,0 +1,92 @@ +using MigraDoc.DocumentObjectModel; +using MigraDoc.DocumentObjectModel.Shapes.Charts; +using MigraDoc.Rendering; +using System.Text; + +namespace ProjectSchedule.Reports; + +internal 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; + } +} \ No newline at end of file diff --git a/ProjectSchedule/ProjectSchedule/Reports/TableReport.cs b/ProjectSchedule/ProjectSchedule/Reports/TableReport.cs new file mode 100644 index 0000000..bd43e3f --- /dev/null +++ b/ProjectSchedule/ProjectSchedule/Reports/TableReport.cs @@ -0,0 +1,90 @@ +using Microsoft.Extensions.Logging; +using ProjectSchedule.Entities; +using ProjectSchedule.Entities.Enums; +using ProjectSchedule.Repositories; + +namespace ProjectSchedule.Reports; + +internal class TableReport +{ + private readonly ICurriculumSupplementRepository _curriculumSupplementRepository; + + private readonly ICompilingScheduleRepository _compilingScheduleRepository; + + private readonly ILogger _logger; + + internal static readonly string[] item = ["Дата", "Дисциплина", "Группа студентов", "Количество лекций", + "Количество практик", "Проведено лекций", "Проведено практик"]; + + public TableReport(ICurriculumSupplementRepository curriculumSupplementRepository, + ICompilingScheduleRepository compilingScheduleRepository, ILogger logger) + { + _curriculumSupplementRepository = curriculumSupplementRepository ?? + throw new ArgumentNullException(nameof(curriculumSupplementRepository)); + _compilingScheduleRepository = compilingScheduleRepository ?? + throw new ArgumentNullException(nameof(compilingScheduleRepository)); + _logger = logger ?? + throw new ArgumentNullException(nameof(logger)); + } + + public bool CreateTable(string filePath, int disciplineId, DateTime startDate, DateTime endDate) + { + try + { + new ExcelBuilder(filePath) + .AddHeader("Сводка по прохождению дисциплин", 0, 7) + .AddParagraph("за период", 0) + .AddTable([15, 15, 15, 10, 10, 10, 10], GetData(disciplineId, startDate, endDate)) + .Build(); + + return true; + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка при формировании документа"); + return false; + } + } + + private List GetData(int disciplineId, DateTime startDate, DateTime endDate) + { + var data = _curriculumSupplementRepository + .ReadCurriculumSupplements() + .Where(x => x.DateAdoptionPlan <= startDate && x.DisciplineCurriculumSupplements.Any(y => y.DisciplineId == disciplineId)) + .Select(x => new { Date = x.DateAdoptionPlan, Discipline = disciplineId, x.GroupStudentsId, + CountLectures = x.DisciplineCurriculumSupplements.FirstOrDefault(y => y.DisciplineId == disciplineId)?.QuantityLectures, + CountPractices = x.DisciplineCurriculumSupplements.FirstOrDefault(y => y.DisciplineId == disciplineId)?.QuantityPractices, + ConductedLectures = (int?)null, ConductedPractices = (int?)null }) + .Union( + _compilingScheduleRepository + .ReadCompilingSchedules() + .Where(x => x.DateDay >= startDate && x.DateDay <= endDate && x.DisciplineId == disciplineId) + .GroupBy(x => new { x.DateDay, x.GroupStudentsId }) + .Select(g => new { Date = g.Key.DateDay, Discipline = disciplineId, g.Key.GroupStudentsId, CountLectures = (int?)null, + CountPractices = (int?)null, ConductedLectures = CalculateConductedLectures(g) == 0 ? (int?)null : CalculateConductedLectures(g), + ConductedPractices = CalculateConductedPractices(g) == 0 ? (int?)null : CalculateConductedPractices(g)})) + .OrderBy(x => x.Date); + + return + new List() { item } + .Union( + data + .Select(x => new string[] { x.Date.ToString("dd.MM.yyyy"), x.Discipline.ToString(), x.GroupStudentsId.ToString(), + x.CountLectures?.ToString() ?? string.Empty, x.CountPractices?.ToString() ?? string.Empty, + x.ConductedLectures?.ToString() ?? string.Empty, x.ConductedPractices?.ToString() ?? string.Empty })) + .Union( + [["Всего", "", "", data.Sum(x => x.CountLectures ?? 0).ToString(), data.Sum(x => x.CountPractices ?? 0).ToString(), + data.Sum(x => x.ConductedLectures ?? 0).ToString(), data.Sum(x => x.ConductedPractices ?? 0).ToString()]]) + .ToList(); + } + + private int CalculateConductedLectures(IEnumerable schedules) + { + return schedules.Count(s => s.TypeActivity == TypeActivity.Lecture); + } + + private int CalculateConductedPractices(IEnumerable schedules) + { + return schedules.Count(s => s.TypeActivity == TypeActivity.Practice); + } +} \ No newline at end of file diff --git a/ProjectSchedule/ProjectSchedule/Reports/WordBuilder.cs b/ProjectSchedule/ProjectSchedule/Reports/WordBuilder.cs new file mode 100644 index 0000000..e163c60 --- /dev/null +++ b/ProjectSchedule/ProjectSchedule/Reports/WordBuilder.cs @@ -0,0 +1,104 @@ +using DocumentFormat.OpenXml.Packaging; +using DocumentFormat.OpenXml.Wordprocessing; +using DocumentFormat.OpenXml; + +namespace ProjectSchedule.Reports; + +internal class WordBuilder +{ + private readonly string _filePath; + + private readonly Document _document; + + private readonly Body _body; + + public WordBuilder(string filePath) + { + if (string.IsNullOrWhiteSpace(filePath)) + { + throw new ArgumentNullException(nameof(filePath)); + } + + if (File.Exists(filePath)) + { + File.Delete(filePath); + } + + _filePath = filePath; + _document = new Document(); + _body = _document.AppendChild(new Body()); + } + + public WordBuilder AddHeader(string header) + { + var paragraph = _body.AppendChild(new Paragraph()); + var run = paragraph.AppendChild(new Run()); + run.AppendChild(new RunProperties(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; + } +} \ No newline at end of file diff --git a/ProjectSchedule/ProjectSchedule/Repositories/Implementations/CurriculumSupplementRepository.cs b/ProjectSchedule/ProjectSchedule/Repositories/Implementations/CurriculumSupplementRepository.cs index 1498e17..5aaa3b0 100644 --- a/ProjectSchedule/ProjectSchedule/Repositories/Implementations/CurriculumSupplementRepository.cs +++ b/ProjectSchedule/ProjectSchedule/Repositories/Implementations/CurriculumSupplementRepository.cs @@ -76,10 +76,15 @@ public class CurriculumSupplementRepository : ICurriculumSupplementRepository try { using var connection = new NpgsqlConnection(_connectionString.ConnectionString); - var querySelect = "SELECT * FROM CurriculumSupplements"; - var curriculumSupplements = connection.Query(querySelect); + var querySelect = @" + SELECT cs.*, dcs.DisciplineId, dcs.QuantityLectures, dcs.QuantityPractices FROM CurriculumSupplements cs + INNER JOIN DisciplineCurriculumSupplements dcs ON dcs.CurriculumSupplementId = cs.Id"; + var curriculumSupplements = connection.Query(querySelect); _logger.LogDebug("Полученные объекты: {json}", JsonConvert.SerializeObject(curriculumSupplements)); - return curriculumSupplements; + + return curriculumSupplements.GroupBy(x => x.Id, y => y, + (key, value) => CurriculumSupplement.CreateOpeartion(value.First(), + value.Select(z => DisciplineCurriculumSupplement.CreateElement(0, z.DisciplineId, z.QuantityLectures, z.QuantityPractices)))).ToList(); } catch (Exception ex) {