2024-04-03 11:13:23 +04:00
|
|
|
|
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
|
|
|
|
|
2024-04-03 11:13:23 +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,
|
2024-04-03 11:13:23 +04:00
|
|
|
|
StyleInfo = ExcelStyleInfoType.Text
|
|
|
|
|
});
|
|
|
|
|
rowIndex++;
|
2024-04-10 19:04:19 +04:00
|
|
|
|
foreach (var Component in pc.Components)
|
2024-04-03 11:13:23 +04:00
|
|
|
|
{
|
|
|
|
|
InsertCellInWorksheet(new ExcelCellParameters
|
|
|
|
|
{
|
|
|
|
|
ColumnName = "B",
|
|
|
|
|
RowIndex = rowIndex,
|
2024-04-10 19:04:19 +04:00
|
|
|
|
Text = Component.Item1,
|
|
|
|
|
StyleInfo = ExcelStyleInfoType.TextWithBroder
|
2024-04-03 11:13:23 +04:00
|
|
|
|
});
|
|
|
|
|
InsertCellInWorksheet(new ExcelCellParameters
|
|
|
|
|
{
|
|
|
|
|
ColumnName = "C",
|
|
|
|
|
RowIndex = rowIndex,
|
2024-04-10 19:04:19 +04:00
|
|
|
|
Text = Component.Item2.ToString(),
|
|
|
|
|
StyleInfo = ExcelStyleInfoType.TextWithBroder
|
2024-04-03 11:13:23 +04:00
|
|
|
|
});
|
2024-04-10 19:04:19 +04:00
|
|
|
|
|
2024-04-03 11:13:23 +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
|
|
|
|
|
2024-04-03 11:13:23 +04:00
|
|
|
|
protected abstract void CreateExcel(ExcelInfo info);
|
2024-04-10 19:04:19 +04:00
|
|
|
|
|
|
|
|
|
protected abstract void InsertCellInWorksheet(ExcelCellParameters excelParams);
|
|
|
|
|
|
2024-04-03 11:13:23 +04:00
|
|
|
|
protected abstract void MergeCells(ExcelMergeParameters excelParams);
|
|
|
|
|
|
2024-04-10 19:04:19 +04:00
|
|
|
|
protected abstract void SaveExcel(ExcelInfo info);
|
2024-04-03 11:13:23 +04:00
|
|
|
|
}
|
|
|
|
|
}
|