PIbd-22_Petrushin_E.A._LawFirm/LawFirm/AbstractLawFirmBusinessLogic/OfficePackage/AbstractSaveToExcel.cs

101 lines
3.6 KiB
C#
Raw Normal View History

2024-04-07 21:23:24 +04:00
using AbstractLawFirmBusinessLogic.OfficePackage.HelperEnums;
using AbstractLawFirmBusinessLogic.OfficePackage.HelperModels;
2024-04-09 22:12:15 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-04-07 21:23:24 +04:00
namespace AbstractLawFirmBusinessLogic.OfficePackage
{
public abstract class AbstractSaveToExcel
{
/// <summary>
/// Создание отчета
/// </summary>
/// <param name="info"></param>
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;
2024-04-09 22:12:15 +04:00
foreach (var pc in info.DocumentComponents)
2024-04-07 21:23:24 +04:00
{
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "A",
RowIndex = rowIndex,
2024-04-09 22:12:15 +04:00
Text = pc.DocumentName,
2024-04-07 21:23:24 +04:00
StyleInfo = ExcelStyleInfoType.Text
});
rowIndex++;
2024-04-09 22:12:15 +04:00
foreach (var (Component, Count) in pc.Components)
2024-04-07 21:23:24 +04:00
{
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "B",
RowIndex = rowIndex,
2024-04-09 22:12:15 +04:00
Text = Component,
StyleInfo = ExcelStyleInfoType.TextWithBorder
2024-04-07 21:23:24 +04:00
});
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "C",
RowIndex = rowIndex,
2024-04-09 22:12:15 +04:00
Text = Count.ToString(),
StyleInfo = ExcelStyleInfoType.TextWithBorder
2024-04-07 21:23:24 +04:00
});
rowIndex++;
}
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "A",
RowIndex = rowIndex,
Text = "Итого",
StyleInfo = ExcelStyleInfoType.Text
});
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "C",
RowIndex = rowIndex,
2024-04-09 22:12:15 +04:00
Text = pc.TotalCount.ToString(),
2024-04-07 21:23:24 +04:00
StyleInfo = ExcelStyleInfoType.Text
});
rowIndex++;
}
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);
}
2024-04-09 22:12:15 +04:00
}