2024-03-27 11:04:28 +04:00
using PlumbingRepairBusinessLogic.OfficePackage.HelperEnum ;
using PlumbingRepairBusinessLogic.OfficePackage.HelperModels ;
namespace PlumbingRepairBusinessLogic.OfficePackage
{
public abstract class AbstractSaveToPdf
{
public void CreateDoc ( PdfInfo info )
{
CreatePdf ( info ) ;
2024-04-10 01:01:51 +04:00
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" , "6cm" , "3cm" , "4 cm" } ) ;
2024-03-27 11:04:28 +04:00
CreateRow ( new PdfRowParameters
{
2024-04-10 01:01:51 +04:00
Texts = new List < string > { "Номер" , "Дата заказа" , "Работа" , "Статус" , "Сумма" } ,
2024-03-27 11:04:28 +04:00
Style = "NormalTitle" ,
ParagraphAlignment = PdfParagraphAlignmentType . Center
} ) ;
2024-04-10 01:01:51 +04:00
2024-03-27 11:04:28 +04:00
foreach ( var order in info . Orders )
{
CreateRow ( new PdfRowParameters
{
2024-04-10 01:01:51 +04:00
Texts = new List < string > { order . Id . ToString ( ) , order . DateCreate . ToShortDateString ( ) , order . WorkName , order . OrderStatus . ToString ( ) , order . Sum . ToString ( ) } ,
2024-03-27 11:04:28 +04:00
Style = "Normal" ,
ParagraphAlignment = PdfParagraphAlignmentType . Left
} ) ;
}
2024-04-10 01:01:51 +04:00
CreateParagraph ( new PdfParagraph { Text = $"Итого: {info.Orders.Sum(x => x.Sum)}\t" , Style = "Normal" , ParagraphAlignment = PdfParagraphAlignmentType . Right } ) ;
2024-03-27 11:04:28 +04:00
SavePdf ( info ) ;
}
2024-04-10 01:01:51 +04:00
/// <summary>
/// Создание doc-файла
/// </summary>
/// <param name="info"></param>
2024-03-27 11:04:28 +04:00
protected abstract void CreatePdf ( PdfInfo info ) ;
2024-04-10 01:01:51 +04:00
/// <summary>
/// Создание параграфа с текстом
/// </summary>
/// <param name="title"></param>
/// <param name="style"></param>
2024-03-27 11:04:28 +04:00
protected abstract void CreateParagraph ( PdfParagraph paragraph ) ;
2024-04-10 01:01:51 +04:00
/// <summary>
/// Создание таблицы
/// </summary>
/// <param name="title"></param>
/// <param name="style"></param>
2024-03-27 11:04:28 +04:00
protected abstract void CreateTable ( List < string > columns ) ;
2024-04-10 01:01:51 +04:00
/// <summary>
/// Создание и заполнение строки
/// </summary>
/// <param name="rowParameters"></param>
2024-03-27 11:04:28 +04:00
protected abstract void CreateRow ( PdfRowParameters rowParameters ) ;
2024-04-10 01:01:51 +04:00
/// <summary>
/// Сохранение файла
/// </summary>
/// <param name="info"></param>
2024-03-27 11:04:28 +04:00
protected abstract void SavePdf ( PdfInfo info ) ;
}
}