PIbd-22_Isaeva_A.I._FishFac.../FishFactoryBusinessLogic/OfficePackage/AbstractSaveToExcel.cs

82 lines
2.8 KiB
C#
Raw Normal View History

using FishFactoryBusinessLogic.OfficePackage.HelperEnums;
using FishFactoryBusinessLogic.OfficePackage.HelperModels;
namespace FishFactoryBusinessLogic.OfficePackage
{
public abstract class AbstractSaveToExcel
{
public void CreateReport(ExcelInfo info)
{
CreateExcel(info);
2024-04-10 19:04:19 +04:00
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.CannedComponents)
{
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "A",
RowIndex = rowIndex,
2024-04-10 19:04:19 +04:00
Text = pc.CannedName,
StyleInfo = ExcelStyleInfoType.Text
});
rowIndex++;
2024-04-10 19:04:19 +04:00
foreach (var Component in pc.Components)
{
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "B",
RowIndex = rowIndex,
2024-04-10 19:04:19 +04:00
Text = Component.Item1,
StyleInfo = ExcelStyleInfoType.TextWithBroder
});
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "C",
RowIndex = rowIndex,
2024-04-10 19:04:19 +04:00
Text = Component.Item2.ToString(),
StyleInfo = ExcelStyleInfoType.TextWithBroder
});
2024-04-10 19:04:19 +04:00
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-10 19:04:19 +04:00
protected abstract void CreateExcel(ExcelInfo info);
2024-04-10 19:04:19 +04:00
protected abstract void InsertCellInWorksheet(ExcelCellParameters excelParams);
protected abstract void MergeCells(ExcelMergeParameters excelParams);
2024-04-10 19:04:19 +04:00
protected abstract void SaveExcel(ExcelInfo info);
}
}