PIBD-21_Lobashov_I_D_Travel.../TravelCompany/TravelCompanyBusinessLogic/OfficePackage/AbstractSaveToPdf.cs

60 lines
2.3 KiB
C#
Raw Normal View History

2024-03-22 01:29:50 +04:00
using TravelCompanyBusinessLogic.OfficePackage.HelperEnums;
using TravelCompanyBusinessLogic.OfficePackage.HelperModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TravelCompanyBusinessLogic.OfficePackage
{
public abstract class AbstractSaveToPdf
{
public void CreateDoc(PdfInfo info)
{
CreatePdf(info);
CreateParagraph(new PdfParagraph
{
Text = info.Title,
2024-03-22 19:04:16 +04:00
Style = "NormalTitle",
2024-03-22 01:29:50 +04:00
ParagraphAlignment = PdfParagraphAlignmentType.Center
});
CreateParagraph(new PdfParagraph
{
2024-03-22 19:04:16 +04:00
Text = $"с{info.DateFrom.ToShortDateString()} по {info.DateTo.ToShortDateString()}",
Style = "Normal",
2024-03-22 01:29:50 +04:00
ParagraphAlignment = PdfParagraphAlignmentType.Center
});
2024-03-22 19:04:16 +04:00
CreateTable(new List<string> { "2cm", "3cm", "6cm", "3cm", "4cm" });
2024-03-22 01:29:50 +04:00
CreateRow(new PdfRowParameters
{
2024-03-22 19:04:16 +04:00
Texts = new List<string> { "Номер", "Дата заказа", "Изделие", "Сумма", "Статус" },
2024-03-22 01:29:50 +04:00
Style = "NormalTitle",
ParagraphAlignment = PdfParagraphAlignmentType.Center
});
foreach (var order in info.Orders)
{
CreateRow(new PdfRowParameters
{
2024-03-22 19:04:16 +04:00
Texts = new List<string> { order.Id.ToString(), order.DateCreate.ToShortDateString(), order.TravelName, order.Sum.ToString(), order.Status },
2024-03-22 01:29:50 +04:00
Style = "Normal",
ParagraphAlignment = PdfParagraphAlignmentType.Left
});
}
CreateParagraph(new PdfParagraph
{
Text = $"Итого: {info.Orders.Sum(x => x.Sum)}\t",
Style = "Normal",
2024-03-22 19:04:16 +04:00
ParagraphAlignment = PdfParagraphAlignmentType.Right
2024-03-22 01:29:50 +04:00
});
SavePdf(info);
}
2024-03-22 19:04:16 +04:00
2024-03-22 01:29:50 +04:00
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);
}
}