2023-05-24 19:38:01 +04:00
|
|
|
|
using ComputerShopBusinessLogic.OfficePackage.HelperEnums;
|
|
|
|
|
using ComputerShopBusinessLogic.OfficePackage.HelperModels;
|
2023-04-09 16:55:38 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ComputerShopBusinessLogic.OfficePackage
|
|
|
|
|
{
|
2023-05-17 12:19:00 +04:00
|
|
|
|
public abstract class AbstractSaveToExcel
|
2023-04-09 16:55:38 +04:00
|
|
|
|
{
|
2023-05-24 19:38:01 +04:00
|
|
|
|
public void CreateReport(ExcelInfoProvider 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 mc in info.ComponentReceivings)
|
|
|
|
|
{
|
|
|
|
|
InsertCellInWorksheet(new ExcelCellParameters
|
|
|
|
|
{
|
|
|
|
|
ColumnName = "A",
|
|
|
|
|
RowIndex = rowIndex,
|
|
|
|
|
Text = mc.ComponentName,
|
|
|
|
|
StyleInfo = ExcelStyleInfoType.Text
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
rowIndex++;
|
|
|
|
|
|
|
|
|
|
foreach (var receiving in mc.Receivings)
|
|
|
|
|
{
|
|
|
|
|
InsertCellInWorksheet(new ExcelCellParameters
|
|
|
|
|
{
|
|
|
|
|
ColumnName = "B",
|
|
|
|
|
RowIndex = rowIndex,
|
|
|
|
|
Text = receiving,
|
|
|
|
|
StyleInfo = ExcelStyleInfoType.TextWithBorder
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
rowIndex++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rowIndex++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SaveExcel(info);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected abstract void CreateExcel(ExcelInfoProvider info);
|
|
|
|
|
|
|
|
|
|
protected abstract void InsertCellInWorksheet(ExcelCellParameters excelParams);
|
|
|
|
|
|
|
|
|
|
protected abstract void MergeCells(ExcelMergeParameters excelParams);
|
|
|
|
|
|
|
|
|
|
protected abstract void SaveExcel(ExcelInfoProvider info);
|
2023-04-09 16:55:38 +04:00
|
|
|
|
}
|
|
|
|
|
}
|