85 lines
2.6 KiB
C#
85 lines
2.6 KiB
C#
using ElectronicsShopBusinessLogic.OfficePackage.HelperEnums;
|
|
using ElectronicsShopBusinessLogic.OfficePackage.HelperModels;
|
|
|
|
|
|
namespace ElectronicsShopBusinessLogic.OfficePackage
|
|
{
|
|
public abstract class AbstractSaveToExcelClient
|
|
{
|
|
public void CreateReport(ExcelInfoClient 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 pc in info.Paymeants)
|
|
{
|
|
InsertCellInWorksheet(new ExcelCellParameters
|
|
{
|
|
ColumnName = "A",
|
|
RowIndex = rowIndex,
|
|
Text = pc.OrderID.ToString(),
|
|
StyleInfo = ExcelStyleInfoType.Text
|
|
});
|
|
rowIndex++;
|
|
|
|
InsertCellInWorksheet(new ExcelCellParameters
|
|
{
|
|
ColumnName = "B",
|
|
RowIndex = rowIndex,
|
|
Text = pc.PayOption.ToString(),
|
|
StyleInfo = ExcelStyleInfoType.Text
|
|
});
|
|
InsertCellInWorksheet(new ExcelCellParameters
|
|
{
|
|
ColumnName = "C",
|
|
RowIndex = rowIndex,
|
|
Text = pc.SumPayment.ToString(),
|
|
StyleInfo = ExcelStyleInfoType.TextWithBroder
|
|
});
|
|
|
|
rowIndex++;
|
|
}
|
|
|
|
SaveExcel(info);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Создание excel-файла
|
|
/// </summary>
|
|
/// <param name="info"></param>
|
|
protected abstract void CreateExcel(ExcelInfoClient 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(ExcelInfoClient info);
|
|
}
|
|
}
|