diff --git a/RegistrationOfPatients/RegistrationOfPatients/FormRegistration.Designer.cs b/RegistrationOfPatients/RegistrationOfPatients/FormRegistration.Designer.cs index 69dbdac..d81685a 100644 --- a/RegistrationOfPatients/RegistrationOfPatients/FormRegistration.Designer.cs +++ b/RegistrationOfPatients/RegistrationOfPatients/FormRegistration.Designer.cs @@ -37,6 +37,7 @@ ReceptionToolStripMenuItem = new ToolStripMenuItem(); PaymentToolStripMenuItem = new ToolStripMenuItem(); отчетыToolStripMenuItem = new ToolStripMenuItem(); + DirectoryReportToolStripMenuItem = new ToolStripMenuItem(); menuStrip.SuspendLayout(); SuspendLayout(); // @@ -88,23 +89,32 @@ // ReceptionToolStripMenuItem // ReceptionToolStripMenuItem.Name = "ReceptionToolStripMenuItem"; - ReceptionToolStripMenuItem.Size = new Size(224, 26); + ReceptionToolStripMenuItem.Size = new Size(156, 26); ReceptionToolStripMenuItem.Text = "Запись"; ReceptionToolStripMenuItem.Click += ReceptionToolStripMenuItem_Click; // // PaymentToolStripMenuItem // PaymentToolStripMenuItem.Name = "PaymentToolStripMenuItem"; - PaymentToolStripMenuItem.Size = new Size(224, 26); + PaymentToolStripMenuItem.Size = new Size(156, 26); PaymentToolStripMenuItem.Text = "Зарплата"; PaymentToolStripMenuItem.Click += PaymentToolStripMenuItem_Click; // // отчетыToolStripMenuItem // + отчетыToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { DirectoryReportToolStripMenuItem }); отчетыToolStripMenuItem.Name = "отчетыToolStripMenuItem"; отчетыToolStripMenuItem.Size = new Size(73, 24); отчетыToolStripMenuItem.Text = "Отчеты"; // + // DirectoryReportToolStripMenuItem + // + DirectoryReportToolStripMenuItem.Name = "DirectoryReportToolStripMenuItem"; + DirectoryReportToolStripMenuItem.ShortcutKeys = Keys.Control | Keys.W; + DirectoryReportToolStripMenuItem.Size = new Size(350, 26); + DirectoryReportToolStripMenuItem.Text = "Документ со справочниками"; + DirectoryReportToolStripMenuItem.Click += DirectoryReportToolStripMenuItem_Click; + // // FormRegistration // AutoScaleDimensions = new SizeF(8F, 20F); @@ -134,5 +144,6 @@ private ToolStripMenuItem ReceptionToolStripMenuItem; private ToolStripMenuItem PaymentToolStripMenuItem; private ToolStripMenuItem MedicinesToolStripMenuItem; + private ToolStripMenuItem DirectoryReportToolStripMenuItem; } } \ No newline at end of file diff --git a/RegistrationOfPatients/RegistrationOfPatients/FormRegistration.cs b/RegistrationOfPatients/RegistrationOfPatients/FormRegistration.cs index f009aa0..9162bf1 100644 --- a/RegistrationOfPatients/RegistrationOfPatients/FormRegistration.cs +++ b/RegistrationOfPatients/RegistrationOfPatients/FormRegistration.cs @@ -71,4 +71,16 @@ public partial class FormRegistration : Form 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); + } + } } \ No newline at end of file diff --git a/RegistrationOfPatients/RegistrationOfPatients/Forms/FormDirectoryReport.Designer.cs b/RegistrationOfPatients/RegistrationOfPatients/Forms/FormDirectoryReport.Designer.cs new file mode 100644 index 0000000..87de514 --- /dev/null +++ b/RegistrationOfPatients/RegistrationOfPatients/Forms/FormDirectoryReport.Designer.cs @@ -0,0 +1,99 @@ +namespace RegistrationOfPatients.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() + { + checkBoxDoctors = new CheckBox(); + checkBoxPatients = new CheckBox(); + checkBoxMedicines = new CheckBox(); + ButtonBuild = new Button(); + SuspendLayout(); + // + // checkBoxDoctors + // + checkBoxDoctors.AutoSize = true; + checkBoxDoctors.Location = new Point(48, 85); + checkBoxDoctors.Name = "checkBoxDoctors"; + checkBoxDoctors.Size = new Size(89, 24); + checkBoxDoctors.TabIndex = 0; + checkBoxDoctors.Text = "Доктора"; + checkBoxDoctors.UseVisualStyleBackColor = true; + // + // checkBoxPatients + // + checkBoxPatients.AutoSize = true; + checkBoxPatients.Location = new Point(48, 128); + checkBoxPatients.Name = "checkBoxPatients"; + checkBoxPatients.Size = new Size(102, 24); + checkBoxPatients.TabIndex = 1; + checkBoxPatients.Text = "Пациенты"; + checkBoxPatients.UseVisualStyleBackColor = true; + // + // checkBoxMedicines + // + checkBoxMedicines.AutoSize = true; + checkBoxMedicines.Location = new Point(48, 173); + checkBoxMedicines.Name = "checkBoxMedicines"; + checkBoxMedicines.Size = new Size(102, 24); + checkBoxMedicines.TabIndex = 2; + checkBoxMedicines.Text = "Лекарства"; + checkBoxMedicines.UseVisualStyleBackColor = true; + // + // ButtonBuild + // + ButtonBuild.Location = new Point(192, 125); + ButtonBuild.Name = "ButtonBuild"; + ButtonBuild.Size = new Size(133, 29); + ButtonBuild.TabIndex = 3; + ButtonBuild.Text = "Сформировать"; + ButtonBuild.UseVisualStyleBackColor = true; + ButtonBuild.Click += ButtonBuild_Click; + // + // FormDirectoryReport + // + AutoScaleDimensions = new SizeF(8F, 20F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(362, 341); + Controls.Add(ButtonBuild); + Controls.Add(checkBoxMedicines); + Controls.Add(checkBoxPatients); + Controls.Add(checkBoxDoctors); + Name = "FormDirectoryReport"; + Text = "FormDirectoryReport"; + ResumeLayout(false); + PerformLayout(); + } + + #endregion + + private CheckBox checkBoxDoctors; + private CheckBox checkBoxPatients; + private CheckBox checkBoxMedicines; + private Button ButtonBuild; + } +} \ No newline at end of file diff --git a/RegistrationOfPatients/RegistrationOfPatients/Forms/FormDirectoryReport.cs b/RegistrationOfPatients/RegistrationOfPatients/Forms/FormDirectoryReport.cs new file mode 100644 index 0000000..5489ba4 --- /dev/null +++ b/RegistrationOfPatients/RegistrationOfPatients/Forms/FormDirectoryReport.cs @@ -0,0 +1,57 @@ +using RegistrationOfPatients.Reports; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using Unity; + +namespace RegistrationOfPatients.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 (!checkBoxDoctors.Checked && !checkBoxPatients.Checked && !checkBoxMedicines.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, checkBoxDoctors.Checked, checkBoxPatients.Checked, checkBoxMedicines.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/RegistrationOfPatients/RegistrationOfPatients/Forms/FormDirectoryReport.resx b/RegistrationOfPatients/RegistrationOfPatients/Forms/FormDirectoryReport.resx new file mode 100644 index 0000000..8b2ff64 --- /dev/null +++ b/RegistrationOfPatients/RegistrationOfPatients/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/RegistrationOfPatients/RegistrationOfPatients/Forms/FormMedicineReport.Designer.cs b/RegistrationOfPatients/RegistrationOfPatients/Forms/FormMedicineReport.Designer.cs new file mode 100644 index 0000000..f386e02 --- /dev/null +++ b/RegistrationOfPatients/RegistrationOfPatients/Forms/FormMedicineReport.Designer.cs @@ -0,0 +1,163 @@ +namespace RegistrationOfPatients.Forms +{ + partial class FormMedicineReport + { + /// + /// 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() + { + dateTimePickerDateEnd = new DateTimePicker(); + dateTimePickerDateBegin = new DateTimePicker(); + comboBoxMedicine = new ComboBox(); + textBoxFilePath = new TextBox(); + ButtonMakeReport = new Button(); + label1 = new Label(); + label2 = new Label(); + label3 = new Label(); + label4 = new Label(); + ButtonSelectFilePath = new Button(); + SuspendLayout(); + // + // dateTimePickerDateEnd + // + dateTimePickerDateEnd.Location = new Point(215, 222); + dateTimePickerDateEnd.Name = "dateTimePickerDateEnd"; + dateTimePickerDateEnd.Size = new Size(250, 27); + dateTimePickerDateEnd.TabIndex = 0; + // + // dateTimePickerDateBegin + // + dateTimePickerDateBegin.Location = new Point(215, 189); + dateTimePickerDateBegin.Name = "dateTimePickerDateBegin"; + dateTimePickerDateBegin.Size = new Size(250, 27); + dateTimePickerDateBegin.TabIndex = 1; + // + // comboBoxMedicine + // + comboBoxMedicine.FormattingEnabled = true; + comboBoxMedicine.Location = new Point(215, 155); + comboBoxMedicine.Name = "comboBoxMedicine"; + comboBoxMedicine.Size = new Size(250, 28); + comboBoxMedicine.TabIndex = 2; + // + // textBoxFilePath + // + textBoxFilePath.Location = new Point(215, 122); + textBoxFilePath.Name = "textBoxFilePath"; + textBoxFilePath.ReadOnly = true; + textBoxFilePath.Size = new Size(217, 27); + textBoxFilePath.TabIndex = 3; + // + // ButtonMakeReport + // + ButtonMakeReport.Location = new Point(169, 294); + ButtonMakeReport.Name = "ButtonMakeReport"; + ButtonMakeReport.Size = new Size(179, 29); + ButtonMakeReport.TabIndex = 4; + ButtonMakeReport.Text = "Сформировать"; + ButtonMakeReport.UseVisualStyleBackColor = true; + ButtonMakeReport.Click += ButtonMakeReport_Click; + // + // label1 + // + label1.AutoSize = true; + label1.Location = new Point(42, 125); + label1.Name = "label1"; + label1.Size = new Size(112, 20); + label1.TabIndex = 5; + label1.Text = "Путь до файла:"; + // + // label2 + // + label2.AutoSize = true; + label2.Location = new Point(42, 158); + label2.Name = "label2"; + label2.Size = new Size(84, 20); + label2.TabIndex = 6; + label2.Text = "Лекарство:"; + // + // label3 + // + label3.AutoSize = true; + label3.Location = new Point(42, 194); + label3.Name = "label3"; + label3.Size = new Size(97, 20); + label3.TabIndex = 8; + label3.Text = "Дата начала:"; + // + // label4 + // + label4.AutoSize = true; + label4.Location = new Point(42, 227); + label4.Name = "label4"; + label4.Size = new Size(90, 20); + label4.TabIndex = 7; + label4.Text = "Дата конца:"; + // + // ButtonSelectFilePath + // + ButtonSelectFilePath.Location = new Point(438, 122); + ButtonSelectFilePath.Name = "ButtonSelectFilePath"; + ButtonSelectFilePath.Size = new Size(36, 27); + ButtonSelectFilePath.TabIndex = 9; + ButtonSelectFilePath.Text = ".."; + ButtonSelectFilePath.UseVisualStyleBackColor = true; + ButtonSelectFilePath.Click += ButtonSelectFilePath_Click; + // + // FormMedicineReport + // + AutoScaleDimensions = new SizeF(8F, 20F); + AutoScaleMode = AutoScaleMode.Font; + ClientSize = new Size(527, 382); + Controls.Add(ButtonSelectFilePath); + Controls.Add(label3); + Controls.Add(label4); + Controls.Add(label2); + Controls.Add(label1); + Controls.Add(ButtonMakeReport); + Controls.Add(textBoxFilePath); + Controls.Add(comboBoxMedicine); + Controls.Add(dateTimePickerDateBegin); + Controls.Add(dateTimePickerDateEnd); + Name = "FormMedicineReport"; + Text = "FormMedicineReport"; + ResumeLayout(false); + PerformLayout(); + } + + #endregion + + private DateTimePicker dateTimePickerDateEnd; + private DateTimePicker dateTimePickerDateBegin; + private ComboBox comboBoxMedicine; + private TextBox textBoxFilePath; + private Button ButtonMakeReport; + private Label label1; + private Label label2; + private Label label3; + private Label label4; + private Button ButtonSelectFilePath; + } +} \ No newline at end of file diff --git a/RegistrationOfPatients/RegistrationOfPatients/Forms/FormMedicineReport.cs b/RegistrationOfPatients/RegistrationOfPatients/Forms/FormMedicineReport.cs new file mode 100644 index 0000000..917187c --- /dev/null +++ b/RegistrationOfPatients/RegistrationOfPatients/Forms/FormMedicineReport.cs @@ -0,0 +1,78 @@ +using RegistrationOfPatients.Reports; +using RegistrationOfPatients.Repositories; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using Unity; + +namespace RegistrationOfPatients.Forms; + +public partial class FormMedicineReport : Form +{ + private readonly IUnityContainer _container; + public FormMedicineReport(IUnityContainer container, IMedicineRepository medicineRepository) + { + InitializeComponent(); + _container = container ?? throw new ArgumentNullException(nameof(container)); + + comboBoxMedicine.DataSource = medicineRepository.ReadMedicine(); + comboBoxMedicine.DisplayMember = "Name"; + comboBoxMedicine.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 (comboBoxMedicine.SelectedIndex < 0) + { + throw new Exception("Не выбран корм"); + } + + if (dateTimePickerDateEnd.Value <= dateTimePickerDateBegin.Value) + { + throw new Exception("Дата начала должна быть раньше даты окончания"); + } + + if + (_container.Resolve().CreateTable(textBoxFilePath.Text, (int)comboBoxMedicine.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); + } + } +} diff --git a/RegistrationOfPatients/RegistrationOfPatients/Forms/FormMedicineReport.resx b/RegistrationOfPatients/RegistrationOfPatients/Forms/FormMedicineReport.resx new file mode 100644 index 0000000..8b2ff64 --- /dev/null +++ b/RegistrationOfPatients/RegistrationOfPatients/Forms/FormMedicineReport.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/RegistrationOfPatients/RegistrationOfPatients/RegistrationOfPatients.csproj b/RegistrationOfPatients/RegistrationOfPatients/RegistrationOfPatients.csproj index 5d253fb..e587b00 100644 --- a/RegistrationOfPatients/RegistrationOfPatients/RegistrationOfPatients.csproj +++ b/RegistrationOfPatients/RegistrationOfPatients/RegistrationOfPatients.csproj @@ -10,6 +10,7 @@ + diff --git a/RegistrationOfPatients/RegistrationOfPatients/Reports/DocReport.cs b/RegistrationOfPatients/RegistrationOfPatients/Reports/DocReport.cs new file mode 100644 index 0000000..8d46b14 --- /dev/null +++ b/RegistrationOfPatients/RegistrationOfPatients/Reports/DocReport.cs @@ -0,0 +1,87 @@ +using Microsoft.Extensions.Logging; +using RegistrationOfPatients.Repositories; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace RegistrationOfPatients.Reports; + +internal class DocReport +{ + private readonly IDoctorRepository _doctorRepository; + private readonly IPatientRepository _patientRepository; + private readonly IMedicineRepository _medicineRepository; + + private readonly ILogger _logger; + public DocReport(IDoctorRepository doctorRepository, IPatientRepository patientRepository, IMedicineRepository medicineRepository, ILogger logger) + { + _doctorRepository = doctorRepository ?? throw new ArgumentNullException(nameof(doctorRepository)); + _patientRepository = patientRepository ?? throw new ArgumentNullException(nameof(patientRepository)); + _medicineRepository = medicineRepository ?? throw new ArgumentNullException(nameof(medicineRepository)); + _logger = logger ?? throw new ArgumentNullException(nameof(logger)); + } + + public bool CreateDoc(string filePath, bool includeDoctors, bool includePatients, bool includeMedicines) + { + try + { + var builder = new WordBuilder(filePath).AddHeader("Документ со справочниками"); + + if (includeDoctors) + { + builder.AddParagraph("Доктора").AddTable([2400], GetDoctors()); + } + + if (includePatients) + { + builder.AddParagraph("Пациенты").AddTable([2400, 2400], GetPatients()); + } + + if (includeMedicines) + { + builder.AddParagraph("Лекарства").AddTable([2400, 2400, 2400], GetMedicines()); + } + + builder.Build(); + + return true; + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка при формировании документа"); + return false; + } + } + + private List GetDoctors() + { + return [ + ["ФИО"], + .. _doctorRepository + .ReadDoctors() + .Select(x => new string[] { x.Name }), + ]; + } + + private List GetPatients() + { + return [ + ["ФИО", "Номер Телефона"], + .. _patientRepository + .ReadPatients() + .Select(x => new string[] { x.Name, x.Phone }), + ]; + } + + private List GetMedicines() + { + return [ + ["Тип лекарства", "Название", "Описание"], + .. _medicineRepository + .ReadMedicine() + .Select(x => new string[] { x.MedicineType.ToString(), x.Name, x.Description }), + ]; + } +} diff --git a/RegistrationOfPatients/RegistrationOfPatients/Reports/ExcelBuilder.cs b/RegistrationOfPatients/RegistrationOfPatients/Reports/ExcelBuilder.cs new file mode 100644 index 0000000..1ca6a4a --- /dev/null +++ b/RegistrationOfPatients/RegistrationOfPatients/Reports/ExcelBuilder.cs @@ -0,0 +1,332 @@ +using DocumentFormat.OpenXml; +using DocumentFormat.OpenXml.Packaging; +using DocumentFormat.OpenXml.Spreadsheet; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace RegistrationOfPatients.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.SimpleTextWithoutBorder); + 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.SimpleTextWithoutBorder); + } + + _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.SimpleTextWithoutBorder); + } + + _rowIndex++; + } + + for (var j = 0; j < data.Last().Length; ++j) + { + CreateCell(j, _rowIndex, data.Last()[j], StyleIndex.SimpleTextWithoutBorder); + } + + _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) + } + }); + // TODO добавить шрифт с жирным + fonts.Append(new DocumentFormat.OpenXml.Spreadsheet.Font + { + Bold = new Bold() { Val = true }, + FontSize = new FontSize() { Val = 11 }, + FontName = new FontName() { Val = "Calibri" }, + FontFamilyNumbering = new FontFamilyNumbering() { Val = 2 }, + FontScheme = new FontScheme() + { + Val = new EnumValue(FontSchemeValues.Minor) + } + }); + + workbookStylesPart.Stylesheet.Append(fonts); + + // Default Fill + var fills = new Fills() { Count = 1 }; + fills.Append(new Fill + { + PatternFill = new PatternFill() + { + PatternType = new EnumValue(PatternValues.None) + } + }); + workbookStylesPart.Stylesheet.Append(fills); + + // Default Border + var borders = new Borders() { Count = 2 }; + borders.Append(new Border + { + LeftBorder = new LeftBorder(), + RightBorder = new RightBorder(), + TopBorder = new TopBorder(), + BottomBorder = new BottomBorder(), + DiagonalBorder = new DiagonalBorder() + }); + // TODO добавить настройку с границами + 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 + } + }); + // TODO дополнить форматы + 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, + // TODO дополнить стили + 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/RegistrationOfPatients/RegistrationOfPatients/Reports/TableReport.cs b/RegistrationOfPatients/RegistrationOfPatients/Reports/TableReport.cs new file mode 100644 index 0000000..496d7ef --- /dev/null +++ b/RegistrationOfPatients/RegistrationOfPatients/Reports/TableReport.cs @@ -0,0 +1,72 @@ +using Microsoft.Extensions.Logging; +using RegistrationOfPatients.Repositories; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace RegistrationOfPatients.Reports; + +internal class TableReport +{ + private readonly IReceptionRepository _receptionRepository; + + private readonly IPaymentRepository _paymentRepository; + + private readonly ILogger _logger; + + internal static readonly string[] item = ["Доктор", "Дата", "Количество пришло", "Количество ушло"]; + + public TableReport(IPaymentRepository paymentRepository, IReceptionRepository receptionRepository, ILogger logger) + { + _receptionRepository = receptionRepository ?? throw new ArgumentNullException(nameof(receptionRepository)); + _paymentRepository = paymentRepository ?? throw new ArgumentNullException(nameof(paymentRepository)); + _logger = logger ?? throw new ArgumentNullException(nameof(logger)); + } + + public bool CreateTable(string filePath, int medicineId, DateTime startDate, DateTime endDate) + { + try + { + new ExcelBuilder(filePath) + .AddHeader("Сводка по движению лекарств", 0, 4) + .AddParagraph("за период", 0) + .AddTable([10, 10, 15, 15], GetData(medicineId, startDate, endDate)) + .Build(); + return true; + } + catch (Exception ex) + { + _logger.LogError(ex, "Ошибка при формировании документа"); + return false; + } + } + + private List GetData(int medicineId, DateTime startDate, DateTime endDate) + { + var data = _receptionRepository + .ReadReceptions() + .Where(x => x.Date >= startDate && x.Date <= endDate && x.ReceptionMedicine.Any(y => y.MedicineId == medicineId)) + .Select(x => new + { + x.DoctorId, + Date = x.Date, + CountIn = x.ReceptionMedicine.FirstOrDefault(y => y.MedicineId == medicineId)?.Count, CountOut = (int?)null + }) + .Union( + _paymentRepository + .ReadPayment() + .Where(x => x.Date >= startDate && x.Date <= endDate && x.DoctorId == medicineId) + .Select(x => new { x.DoctorId, Date = x.Date, CountIn = (int?)null, CountOut = (int?)null })) + .OrderBy(x => x.Date); + + return new List() { item } + .Union( + data + .Select(x => new string[] { x.DoctorId.ToString(), x.Date.ToString(), x.CountIn?.ToString() ?? string.Empty, x.CountOut?.ToString() ?? string.Empty })) + .Union( + [["Всего", "", data.Sum(x => x.CountIn ?? 0).ToString(), data.Sum(x => x.CountOut ?? 0).ToString()]]) + .ToList(); + } +} diff --git a/RegistrationOfPatients/RegistrationOfPatients/Reports/WordBuilder.cs b/RegistrationOfPatients/RegistrationOfPatients/Reports/WordBuilder.cs new file mode 100644 index 0000000..a71b7f0 --- /dev/null +++ b/RegistrationOfPatients/RegistrationOfPatients/Reports/WordBuilder.cs @@ -0,0 +1,106 @@ +using DocumentFormat.OpenXml; +using DocumentFormat.OpenXml.Packaging; +using DocumentFormat.OpenXml.Wordprocessing; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace RegistrationOfPatients.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()); + // TODO прописать настройки под жирный текст + 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; + } +}