59 lines
2.3 KiB
C#
59 lines
2.3 KiB
C#
|
using DressAtelierBusinessLogic.OfficePackage.HelperEnums;
|
|||
|
using DressAtelierBusinessLogic.OfficePackage.HelperModels;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace DressAtelierBusinessLogic.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
|
|||
|
{
|
|||
|
Text = $"from { info.DateFrom.ToShortDateString() } to { info.DateTo.ToShortDateString() }", Style = "Normal", ParagraphAlignment = PdfParagraphAlignmentType.Center
|
|||
|
});
|
|||
|
CreateTable(new List<string> { "2cm", "3cm", "6cm", "3cm", "4cm" });
|
|||
|
CreateRow(new PdfRowParameters
|
|||
|
{
|
|||
|
Texts = new List<string> { "ID", "Order date", "Dress","Total","Status" },
|
|||
|
Style = "NormalTitle",
|
|||
|
ParagraphAlignment = PdfParagraphAlignmentType.Center
|
|||
|
});
|
|||
|
foreach (var order in info.Orders)
|
|||
|
{
|
|||
|
CreateRow(new PdfRowParameters
|
|||
|
{
|
|||
|
Texts = new List<string> { order.ID.ToString(), order.CreationDate.ToShortDateString(), order.DressName, order.Total.ToString(), order.Status },
|
|||
|
Style = "Normal",
|
|||
|
ParagraphAlignment = PdfParagraphAlignmentType.Left
|
|||
|
});
|
|||
|
}
|
|||
|
CreateParagraph(new PdfParagraph
|
|||
|
{
|
|||
|
Text = $"Total: {info.Orders.Sum(x => x.Total)}\t",
|
|||
|
Style = "Normal",
|
|||
|
ParagraphAlignment = PdfParagraphAlignmentType.Right
|
|||
|
});
|
|||
|
SavePdf(info);
|
|||
|
}
|
|||
|
|
|||
|
protected abstract void SavePdf(PdfInfo 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);
|
|||
|
|
|||
|
}
|
|||
|
}
|