PIbd-22_Turner_I.A._Plumbin.../PlumbingRepair/PlumbingRepairBusinessLogic/OfficePackage/AbstractSaveToPdf.cs

60 lines
2.4 KiB
C#
Raw Normal View History

2023-03-19 20:56:46 +04:00
using PlumbingRepairBusinessLogic.OfficePackage.HelperEnums;
using PlumbingRepairBusinessLogic.OfficePackage.HelperModels;
namespace PlumbingRepairBusinessLogic.OfficePackage
{
public abstract class AbstractSaveToPdf
{
public void CreateDoc(PdfInfo info)
{
CreatePdf(info);
CreateParagraph(new PdfParagraph
{
Text = info.Title,
Style = "NormalTitle",
ParagraphAlignment = PdfParagraphAlignmentType.Center
});
CreateParagraph(new PdfParagraph
{
2023-03-20 19:32:31 +04:00
Text = $"с {info.DateFrom.ToShortDateString()} по {info.DateTo.ToShortDateString()}",
2023-03-19 20:56:46 +04:00
Style = "Normal",
ParagraphAlignment = PdfParagraphAlignmentType.Center
});
CreateTable(new List<string> { "2cm", "3cm", "6cm", "2cm", "3cm" });
CreateRow(new PdfRowParameters
{
2023-03-20 19:32:31 +04:00
Texts = new List<string> { "Номер", "Дата создания", "Изделие", "Статус", "Стоимость" },
2023-03-19 20:56:46 +04:00
Style = "NormalTitle",
ParagraphAlignment = PdfParagraphAlignmentType.Center
});
foreach (var order in info.Orders)
{
CreateRow(new PdfRowParameters
{
Texts = new List<string> {
order.Id.ToString(),
order.DateCreate.ToShortDateString(),
order.WorkName,
order.Status.ToString(),
order.Sum.ToString()
},
Style = "Normal",
ParagraphAlignment = PdfParagraphAlignmentType.Left
});
}
CreateParagraph(new PdfParagraph
{
2023-03-20 17:37:50 +04:00
Text = $"Итого: {info.Orders.Sum(x => x.Sum)}\t",
2023-03-19 20:56:46 +04:00
Style = "Normal",
ParagraphAlignment = PdfParagraphAlignmentType.Rigth
});
SavePdf(info);
}
protected abstract void CreatePdf(PdfInfo info);
protected abstract void CreateParagraph(PdfParagraph paragraph);
protected abstract void CreateTable(List<string> columns);
protected abstract void CreateRow(PdfRowParameters rowParameters);
protected abstract void SavePdf(PdfInfo info);
}
}