PIbd-22_Kozlova_A.A_Precast.../PrecastConcretePlant/PrecastConcretePlantBusinessLogic/OfficePackage/AbstractSaveToExcel.cs

100 lines
3.1 KiB
C#
Raw Normal View History

2024-04-03 00:11:17 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using PrecastConcretePlantBusinessLogic.OfficePackage.HelperEnums;
using PrecastConcretePlantBusinessLogic.OfficePackage.HelperModels;
namespace PrecastConcretePlantBusinessLogic.OfficePackage
{
public abstract class AbstractSaveToExcel
{
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 ic in info.ReinforcedComponents)
{
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "A",
RowIndex = rowIndex,
Text = ic.ReinforcedName,
StyleInfo = ExcelStyleInfoType.Text
});
rowIndex++;
foreach (var (Component, Count) in ic.Components)
{
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "B",
RowIndex = rowIndex,
Text = Component,
StyleInfo = ExcelStyleInfoType.TextWithBorder
});
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "C",
RowIndex = rowIndex,
Text = Count.ToString(),
StyleInfo = ExcelStyleInfoType.TextWithBorder
});
rowIndex++;
}
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "A",
RowIndex = rowIndex,
Text = "Итого",
StyleInfo = ExcelStyleInfoType.Text
});
InsertCellInWorksheet(new ExcelCellParameters
{
ColumnName = "C",
RowIndex = rowIndex,
Text = ic.TotalCount.ToString(),
StyleInfo = ExcelStyleInfoType.Text
});
rowIndex++;
}
SaveExcel(info);
}
2024-04-03 09:34:24 +04:00
// Создание excel-файла
2024-04-03 00:11:17 +04:00
protected abstract void CreateExcel(ExcelInfo info);
2024-04-03 09:34:24 +04:00
// Добавляем новую ячейку в лист
2024-04-03 00:11:17 +04:00
protected abstract void InsertCellInWorksheet(ExcelCellParameters excelParams);
2024-04-03 09:34:24 +04:00
// Объединение ячеек
2024-04-03 00:11:17 +04:00
protected abstract void MergeCells(ExcelMergeParameters excelParams);
2024-04-03 09:34:24 +04:00
// Сохранение файла
2024-04-03 00:11:17 +04:00
protected abstract void SaveExcel(ExcelInfo info);
}
}