ISEbd-22_Alimova_M.S._Confe.../Confectionery/ConfectioneryBusinessLogic/AbstractSaveToExcel.cs

111 lines
3.6 KiB
C#
Raw Normal View History

2024-04-11 23:37:27 +04:00
using ConfectioneryBusinessLogic.OfficePackage.HelperEnums;
using ConfectioneryBusinessLogic.OfficePackage.HelperModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfectioneryBusinessLogic.OfficePackage
{
public abstract class AbstractSaveToExcel
{
/// <summary>
/// Создание отчета
/// </summary>
/// <param name="info"></param>
public void CreateReport(ExcelInfo info)
{
CreateExcel(info);
2024-04-25 23:22:35 +04:00
2024-04-11 23:37:27 +04:00
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "A",
RowIndex = 1,
Text = info.Title,
StyleInfo = ExcelStyleInfoType.Title
});
2024-04-25 23:22:35 +04:00
2024-04-11 23:37:27 +04:00
MergeCells(new ExcelMergeParameters
{
CellFromName = "A1",
CellToName = "C1"
});
2024-04-25 23:22:35 +04:00
2024-04-11 23:37:27 +04:00
uint rowIndex = 2;
foreach (var pc in info.PastryComponents)
{
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "A",
RowIndex = rowIndex,
2024-04-25 23:22:35 +04:00
Text = pc.PastryName,
2024-04-11 23:37:27 +04:00
StyleInfo = ExcelStyleInfoType.Text
});
rowIndex++;
2024-04-25 23:22:35 +04:00
foreach (var (Component, Count) in pc.Components)
2024-04-11 23:37:27 +04:00
{
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "B",
RowIndex = rowIndex,
2024-04-25 23:22:35 +04:00
Text = Component,
StyleInfo = ExcelStyleInfoType.TextWithBroder
2024-04-11 23:37:27 +04:00
});
2024-04-25 23:22:35 +04:00
2024-04-11 23:37:27 +04:00
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "C",
RowIndex = rowIndex,
2024-04-25 23:22:35 +04:00
Text = Count.ToString(),
StyleInfo = ExcelStyleInfoType.TextWithBroder
2024-04-11 23:37:27 +04:00
});
2024-04-25 23:22:35 +04:00
2024-04-11 23:37:27 +04:00
rowIndex++;
}
2024-04-25 23:22:35 +04:00
2024-04-11 23:37:27 +04:00
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++;
}
2024-04-25 23:22:35 +04:00
2024-04-11 23:37:27 +04:00
SaveExcel(info);
}
/// <summary>
/// Создание excel-файла
/// </summary>
/// <param name="info"></param>
protected abstract void CreateExcel(ExcelInfo info);
/// <summary>
/// Добавляем новую ячейку в лист
/// </summary>
/// <param name="cellParameters"></param>
protected abstract void InsertCellInWorksheet(ExcelCellParameters
excelParams);
/// <summary>
/// Объединение ячеек
/// </summary>
/// <param name="mergeParameters"></param>
protected abstract void MergeCells(ExcelMergeParameters excelParams);
/// <summary>
/// Сохранение файла
/// </summary>
/// <param name="info"></param>
protected abstract void SaveExcel(ExcelInfo info);
}
}