69 lines
2.8 KiB
C#
69 lines
2.8 KiB
C#
using HospitalBusinessLogic.OfficePackage.HelperEnums;
|
||
using HospitalBusinessLogic.OfficePackage.HelperModels;
|
||
|
||
namespace HospitalBusinessLogic.OfficePackage
|
||
{
|
||
public abstract class AbstractSaveToPdf
|
||
{
|
||
public MemoryStream CreateDoc(PdfInfo info)
|
||
{
|
||
CreatePdf(info);
|
||
CreateParagraph(new PdfParagraph
|
||
{
|
||
Text = info.Title,
|
||
Style = "NormalTitle",
|
||
ParagraphAlignment = PdfParagraphAlignmentType.Center
|
||
});
|
||
CreateParagraph(new PdfParagraph
|
||
{
|
||
Text = $"с { info.DateFrom.ToShortDateString() } по { info.DateTo.ToShortDateString() }", Style = "Normal",
|
||
ParagraphAlignment = PdfParagraphAlignmentType.Center
|
||
});
|
||
CreateTable(new List<string> { "3cm", "3cm", "3cm", "3cm" });
|
||
CreateRow(new PdfRowParameters
|
||
{
|
||
Texts = new List<string> { "Дата поступления", "Лекарство", "Количество", "Название процедуры" },
|
||
Style = "NormalTitle",
|
||
ParagraphAlignment = PdfParagraphAlignmentType.Center
|
||
});
|
||
foreach (var element in info.Prescriptions)
|
||
{
|
||
CreateRow(new PdfRowParameters
|
||
{
|
||
Texts = new List<string> { element.DateCreate.ToShortDateString(), element.MedicineName, element.Number.ToString(), element.ProcedureName.ToString() },
|
||
Style = "Normal",
|
||
ParagraphAlignment = PdfParagraphAlignmentType.Left
|
||
});
|
||
}
|
||
return SavePdf(info);
|
||
}
|
||
/// <summary>
|
||
/// Создание pdf-файла
|
||
/// </summary>
|
||
/// <param name="info"></param>
|
||
protected abstract void CreatePdf(PdfInfo info);
|
||
/// <summary>
|
||
/// Создание параграфа с текстом
|
||
/// </summary>
|
||
/// <param name="title"></param>
|
||
/// <param name="style"></param>
|
||
protected abstract void CreateParagraph(PdfParagraph paragraph);
|
||
/// <summary>
|
||
/// Создание таблицы
|
||
/// </summary>
|
||
/// <param name="title"></param>
|
||
/// <param name="style"></param>
|
||
protected abstract void CreateTable(List<string> columns);
|
||
/// <summary>
|
||
/// Создание и заполнение строки
|
||
/// </summary>
|
||
/// <param name="rowParameters"></param>
|
||
protected abstract void CreateRow(PdfRowParameters rowParameters);
|
||
/// <summary>
|
||
/// Сохранение файла
|
||
/// </summary>
|
||
/// <param name="info"></param>
|
||
protected abstract MemoryStream SavePdf(PdfInfo info);
|
||
}
|
||
}
|