147 lines
4.2 KiB
C#
147 lines
4.2 KiB
C#
using DocumentFormat.OpenXml.Office2016.Drawing.ChartDrawing;
|
|
using FlowerShopBusinessLogic.OfficePackage.HelperEnums;
|
|
using FlowerShopBusinessLogic.OfficePackage.HelperModels;
|
|
|
|
namespace FlowerShopBusinessLogic.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 fc in info.FlowerComponents)
|
|
{
|
|
InsertCellInWorksheet(new ExcelCellParameters
|
|
{
|
|
ColumnName = "A",
|
|
RowIndex = rowIndex,
|
|
Text = fc.FlowerName,
|
|
StyleInfo = ExcelStyleInfoType.Text
|
|
});
|
|
rowIndex++;
|
|
foreach (var (Flower, Count) in fc.Components)
|
|
{
|
|
InsertCellInWorksheet(new ExcelCellParameters
|
|
{
|
|
ColumnName = "B",
|
|
RowIndex = rowIndex,
|
|
Text = Flower,
|
|
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 = fc.TotalCount.ToString(),
|
|
StyleInfo = ExcelStyleInfoType.Text
|
|
});
|
|
rowIndex++;
|
|
}
|
|
SaveExcel(info);
|
|
}
|
|
public void CreateShopReport(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 si in info.ShopFlowers)
|
|
{
|
|
InsertCellInWorksheet(new ExcelCellParameters
|
|
{
|
|
ColumnName = "A",
|
|
RowIndex = rowIndex,
|
|
Text = si.ShopName,
|
|
StyleInfo = ExcelStyleInfoType.Text
|
|
});
|
|
rowIndex++;
|
|
|
|
foreach (var (Flower, Count) in si.Flowers)
|
|
{
|
|
InsertCellInWorksheet(new ExcelCellParameters
|
|
{
|
|
ColumnName = "B",
|
|
RowIndex = rowIndex,
|
|
Text = Flower,
|
|
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 = si.TotalCount.ToString(),
|
|
StyleInfo = ExcelStyleInfoType.Text
|
|
});
|
|
rowIndex++;
|
|
}
|
|
SaveExcel(info);
|
|
}
|
|
protected abstract void CreateExcel(ExcelInfo info);
|
|
protected abstract void InsertCellInWorksheet(ExcelCellParameters excelParams);
|
|
protected abstract void MergeCells(ExcelMergeParameters excelParams);
|
|
protected abstract void SaveExcel(ExcelInfo info);
|
|
}
|
|
}
|