PIbd-21_CourseWork_Polyclin.../Polyclinic/PolyclinicBusinessLogic/OfficePackage/AbstractSaveToPdfProcedures.cs

77 lines
3.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using PolyclinicBusinessLogic.OfficePackage.HelperEnums;
using PolyclinicBusinessLogic.OfficePackage.HelperModels.PDF;
namespace PolyclinicBusinessLogic.OfficePackage
{
public abstract class AbstractSaveToPdfProcedures
{
public void CreateDoc(PdfProceduresByMedicamentsAndSymptomsInfo 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> { "2cm", "3cm", "3cm", "4cm", "4cm", "4cm" });
CreateRow(new PdfRowParameters
{
Texts = new List<string> { "Номер", "Период 'с'", "Период 'до'", "Процедура", "Лекарство", "Симптом" },
Style = "NormalTitle",
ParagraphAlignment = PdfParagraphAlignmentType.Center
});
foreach (var procedure in info.Procedures)
{
// Добавление строки с основной информацией о процедуре
CreateRow(new PdfRowParameters
{
Texts = new List<string>
{
procedure.Id.ToString(),
procedure.DateStartProcedure.ToShortTimeString(),
procedure.DateStopProcedure?.ToShortTimeString() ?? "нет даты окончания процедуры",
procedure.ProcedureName,
"",
""
},
Style = "Normal",
ParagraphAlignment = PdfParagraphAlignmentType.Left,
});
foreach (var ms in procedure.MedicamentSymptom)
{
// Добавление строки для каждого лекарства и симптома без дублирования названия процедуры
CreateRow(new PdfRowParameters
{
Texts = new List<string>
{
"",
"",
"",
"",
ms.medicamentName,
ms.symptomName
},
Style = "Normal",
ParagraphAlignment = PdfParagraphAlignmentType.Left,
});
}
}
SavePdf(info);
}
protected abstract void CreatePdf(PdfProceduresByMedicamentsAndSymptomsInfo info);
protected abstract void CreateParagraph(PdfParagraph paragraph);
protected abstract void CreateTable(List<string> columns);
protected abstract void CreateRow(PdfRowParameters rowParameters);
protected abstract void SavePdf(PdfProceduresByMedicamentsAndSymptomsInfo info);
}
}