2023-03-22 20:02:42 +04:00
using PrecastConcretePlantBusinessLogic.OfficePackage.HelperEnums ;
using PrecastConcretePlantBusinessLogic.OfficePackage.HelperModels ;
using System ;
using System.Collections.Generic ;
using System.Linq ;
using System.Text ;
using System.Threading.Tasks ;
namespace PrecastConcretePlantBusinessLogic.OfficePackage
{
public abstract class AbstractSaveToPdf
{
public void CreateDoc ( PdfInfo info )
{
CreatePdf ( info ) ;
2023-03-23 13:38:17 +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" , "3cm" } ) ;
2023-03-22 20:02:42 +04:00
CreateRow ( new PdfRowParameters
{
2023-03-23 13:38:17 +04:00
Texts = new List < string > { "Номер" , "Дата заказа" , "ЖБИ" , "Статус" , "Сумма" } ,
2023-03-22 20:02:42 +04:00
Style = "NormalTitle" ,
ParagraphAlignment = PdfParagraphAlignmentType . Center
} ) ;
foreach ( var order in info . Orders )
{
CreateRow ( new PdfRowParameters
{
2023-03-23 13:38:17 +04:00
Texts = new List < string > { order . Id . ToString ( ) , order . DateCreate . ToShortDateString ( ) , order . ReinforcedName , order . OrderStatus , order . Sum . ToString ( ) } ,
2023-03-22 20:02:42 +04:00
Style = "Normal" ,
ParagraphAlignment = PdfParagraphAlignmentType . Left
} ) ;
}
CreateParagraph ( new PdfParagraph
{
2023-03-23 13:38:17 +04:00
Text = $"Итого: {info.Orders.Sum(x => x.Sum)}\t" ,
2023-03-22 20:02:42 +04:00
Style = "Normal" ,
2023-03-23 13:38:17 +04:00
ParagraphAlignment = PdfParagraphAlignmentType . Rigth
2023-03-22 20:02:42 +04:00
} ) ;
SavePdf ( info ) ;
}
2023-05-23 20:15:11 +04:00
public void CreateDocOrdersByDate ( PdfInfoOrdersByDate info )
{
CreatePdf ( new PdfInfo ( ) { FileName = info . FileName } ) ;
CreateParagraph ( new PdfParagraph { Text = info . Title , Style = "NormalTitle" , ParagraphAlignment = PdfParagraphAlignmentType . Center } ) ;
CreateTable ( new List < string > { "5cm" , "4cm" , "4cm" } ) ;
CreateRow ( new PdfRowParameters
{
Texts = new List < string > { "Дата" , "Количество" , "Сумма" } ,
Style = "NormalTitle" ,
ParagraphAlignment = PdfParagraphAlignmentType . Center
} ) ;
foreach ( var order in info . Orders )
{
CreateRow ( new PdfRowParameters
{
Texts = new List < string > { order . DateCreate . ToShortDateString ( ) , order . Count . ToString ( ) , order . Sum . ToString ( ) } ,
Style = "Normal" ,
ParagraphAlignment = PdfParagraphAlignmentType . Left
} ) ;
}
CreateParagraph ( new PdfParagraph
{
Text = $"Итого: {info.Orders.Sum(x => x.Sum)}\t" ,
Style = "Normal" ,
ParagraphAlignment = PdfParagraphAlignmentType . Rigth
} ) ;
SavePdf ( new PdfInfo ( ) { FileName = info . FileName } ) ;
}
2023-03-22 20:02:42 +04:00
/// <summary>
/// Создание doc-файла
/// </summary>
/// <param name="info"></param>
protected abstract void CreatePdf ( PdfInfo info ) ;
/// <summary>
/// Создание параграфа с текстом
/// </summary>
/// <param name="title"></param>
/// <param name="style"></param>
protected abstract void CreateParagraph ( PdfParagraph paragraph ) ;
/// <summary>
/// Создание таблицы
/// </summary>
/// <param name="title"></param>
/// <param name="style"></param>
protected abstract void CreateTable ( List < string > columns ) ;
/// <summary>
/// Создание и заполнение строки
/// </summary>
/// <param name="rowParameters"></param>
protected abstract void CreateRow ( PdfRowParameters rowParameters ) ;
/// <summary>
/// Сохранение файла
/// </summary>
/// <param name="info"></param>
protected abstract void SavePdf ( PdfInfo info ) ;
}
}