PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopBusinessLogic/OfficePackage/AbstractSaveToExcel.cs

103 lines
3.4 KiB
C#
Raw Normal View History

2024-04-07 10:17:23 +04:00
using GiftShopBusinessLogic.OfficePackage.HelperEnums;
using GiftShopBusinessLogic.OfficePackage.HelperModels;
namespace GiftShopBusinessLogic.OfficePackage
{
public abstract class AbstractSaveToExcel
{
2024-04-09 17:02:29 +04:00
/// <summary>
2024-04-07 10:17:23 +04:00
/// Создание отчета
2024-04-09 17:02:29 +04:00
/// </summary>
/// <param name="info"></param>
2024-04-07 10:17:23 +04:00
public void CreateReport(ExcelInfo info)
{
CreateExcel(info);
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "A",
RowIndex = 1,
Text = info.Title,
StyleInfo = ExcelStyleInfoType.Title
});
MergeCells(new ExcelMergeParameters
{
CellFromName = "A1",
CellToName = "C1"
});
uint rowIndex = 2;
foreach (var pc in info.GiftComponents)
{
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "A",
RowIndex = rowIndex,
Text = pc.GiftName,
StyleInfo = ExcelStyleInfoType.Text
});
rowIndex++;
foreach (var (Component, Count) in pc.Components)
{
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "B",
RowIndex = rowIndex,
Text = Component,
StyleInfo = ExcelStyleInfoType.TextWithBroder
});
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "C",
RowIndex = rowIndex,
Text = Count.ToString(),
StyleInfo = ExcelStyleInfoType.TextWithBroder
});
rowIndex++;
}
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "A",
RowIndex = rowIndex,
Text = "Итого",
StyleInfo = ExcelStyleInfoType.Text
});
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "C",
RowIndex = rowIndex,
Text = pc.TotalCount.ToString(),
StyleInfo = ExcelStyleInfoType.Text
});
rowIndex++;
}
SaveExcel(info);
}
2024-04-09 17:02:29 +04:00
/// <summary>
2024-04-07 10:17:23 +04:00
/// Создание excel-файла
2024-04-09 17:02:29 +04:00
/// </summary>
/// <param name="info"></param>
2024-04-07 10:17:23 +04:00
protected abstract void CreateExcel(ExcelInfo info);
2024-04-09 17:02:29 +04:00
/// <summary>
2024-04-07 10:17:23 +04:00
/// Добавляем новую ячейку в лист
2024-04-09 17:02:29 +04:00
/// </summary>
/// <param name="cellParameters"></param>
2024-04-07 10:17:23 +04:00
protected abstract void InsertCellInWorksheet(ExcelCellParameters excelParams);
2024-04-09 17:02:29 +04:00
/// <summary>
2024-04-07 10:17:23 +04:00
/// Объединение ячеек
2024-04-09 17:02:29 +04:00
/// </summary>
/// <param name="mergeParameters"></param>
2024-04-07 10:17:23 +04:00
protected abstract void MergeCells(ExcelMergeParameters excelParams);
2024-04-09 17:02:29 +04:00
/// <summary>
2024-04-07 10:17:23 +04:00
/// Сохранение файла
2024-04-09 17:02:29 +04:00
/// </summary>
/// <param name="info"></param>
2024-04-07 10:17:23 +04:00
protected abstract void SaveExcel(ExcelInfo info);
}
}