PIbd-21_Yakovlev_M.G._CarRe.../CarRepairShop/CarRepairShopBusinessLogic/OfficePackage/AbstractSaveToPdf.cs

53 lines
2.1 KiB
C#
Raw Normal View History

2024-03-24 22:46:50 +04:00
using CarRepairShopBusinessLogic.OfficePackage.HelperEnums;
using CarRepairShopBusinessLogic.OfficePackage.HelperModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarRepairShopBusinessLogic.OfficePackage
{
public abstract class AbstractSaveToPdf
{
public void CreateDoc(PdfInfo info)
{
CreatePdf(info);
CreateParagraph(new PdfParagraph { Text = info.Title, Style = "NormalTitle", ParagraphAligment = PdfParagraphAlignmentType.Center });
CreateParagraph(new PdfParagraph { Text = $"с {info.DateFrom.ToShortDateString()} по {info.DateTo.ToShortDateString()}", Style = "Normal", ParagraphAligment = PdfParagraphAlignmentType.Center });
2024-04-06 20:36:13 +04:00
CreateTable(new List<string> { "2cm", "3cm", "6cm", "4cm", "3cm" });
2024-03-24 22:46:50 +04:00
CreateRow(new PdfRowParameters
{
2024-04-06 20:36:13 +04:00
Texts = new List<string> { "Номер", "Дата заказа", "Ремонт", "Статус", "Сумма" },
2024-03-24 22:46:50 +04:00
Style = "NormalTitle",
ParagraphAligment = PdfParagraphAlignmentType.Center
});
foreach(var order in info.Orders)
{
CreateRow(new PdfRowParameters
{
2024-04-06 20:36:13 +04:00
Texts = new List<string> { order.Id.ToString(), order.DateCreate.ToShortDateString(), order.RepairName, order.OrderStatus, order.Sum.ToString() },
2024-03-24 22:46:50 +04:00
Style = "Normal",
ParagraphAligment = PdfParagraphAlignmentType.Right
});
}
CreateParagraph(new PdfParagraph { Text = $"Итого: {info.Orders.Sum(x => x.Sum)}\t", Style = "Normal", ParagraphAligment = PdfParagraphAlignmentType.Right });
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);
}
}