2023-04-03 16:52:51 +04:00
|
|
|
|
using BankYouBankruptBusinessLogic.OfficePackage.HelperEnums;
|
|
|
|
|
using BankYouBankruptBusinessLogic.OfficePackage.HelperModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BankYouBankruptBusinessLogic.OfficePackage
|
|
|
|
|
{
|
|
|
|
|
public abstract class AbstractSaveToPdfCashier
|
|
|
|
|
{
|
|
|
|
|
//публичный метод создания документа. Описание методов ниже
|
2023-05-18 00:47:56 +04:00
|
|
|
|
public void CreateDoc(PdfInfo info)
|
2023-04-03 16:52:51 +04:00
|
|
|
|
{
|
|
|
|
|
CreatePdf(info);
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
});
|
|
|
|
|
|
2023-05-18 00:04:33 +04:00
|
|
|
|
CreateTable(new List<string> { "2cm", "3cm", "6cm", "3cm", "3cm" });
|
2023-04-03 16:52:51 +04:00
|
|
|
|
|
2023-05-18 00:04:33 +04:00
|
|
|
|
CreateRow(new PdfRowParameters
|
|
|
|
|
{
|
|
|
|
|
Texts = new List<string> { "Номер", "Дата заказа", "Изделие", "Статус заказа", "Сумма" },
|
|
|
|
|
Style = "NormalTitle",
|
|
|
|
|
ParagraphAlignment = PdfParagraphAlignmentType.Center
|
|
|
|
|
});
|
|
|
|
|
|
2023-05-18 00:47:56 +04:00
|
|
|
|
foreach (var report in info.Accounts)
|
2023-05-18 00:04:33 +04:00
|
|
|
|
{
|
|
|
|
|
CreateRow(new PdfRowParameters
|
|
|
|
|
{
|
|
|
|
|
Texts = new List<string> { report.AccountSenderId.ToString(), report.AccountPayeeId.ToString(), report.DateComplite.ToShortDateString(), report.SumOperation.ToString() },
|
|
|
|
|
Style = "Normal",
|
|
|
|
|
ParagraphAlignment = PdfParagraphAlignmentType.Left
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//CreateParagraph(new PdfParagraph { Text = $"Итого: {info.Orders.Sum(x => x.Sum)}\t", Style = "Normal", ParagraphAlignment = PdfParagraphAlignmentType.Right });
|
|
|
|
|
|
|
|
|
|
SavePdf(info);
|
|
|
|
|
}
|
2023-04-03 16:52:51 +04:00
|
|
|
|
|
|
|
|
|
/// Создание pdf-файла
|
2023-05-18 00:47:56 +04:00
|
|
|
|
protected abstract void CreatePdf(PdfInfo info);
|
2023-04-03 16:52:51 +04:00
|
|
|
|
|
|
|
|
|
/// Создание параграфа с текстом
|
|
|
|
|
protected abstract void CreateParagraph(PdfParagraph paragraph);
|
|
|
|
|
|
|
|
|
|
/// Создание таблицы
|
|
|
|
|
protected abstract void CreateTable(List<string> columns);
|
|
|
|
|
|
|
|
|
|
/// Создание и заполнение строки
|
|
|
|
|
protected abstract void CreateRow(PdfRowParameters rowParameters);
|
|
|
|
|
|
|
|
|
|
/// Сохранение файла
|
2023-05-18 00:47:56 +04:00
|
|
|
|
protected abstract void SavePdf(PdfInfo info);
|
2023-04-03 16:52:51 +04:00
|
|
|
|
}
|
|
|
|
|
}
|