2024-05-26 22:36:40 +04:00
|
|
|
|
using LawFirmBusinessLogic.OfficePackages.HelperEnums;
|
|
|
|
|
using LawFirmBusinessLogic.OfficePackages.HelperModels;
|
|
|
|
|
|
|
|
|
|
namespace LawFirmBusinessLogic.OfficePackages
|
|
|
|
|
{
|
2024-05-28 03:11:22 +04:00
|
|
|
|
public abstract class AbstractSaveToExcelClientsConsultation
|
2024-05-26 22:36:40 +04:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Создание отчета
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="info"></param>
|
2024-05-28 03:11:22 +04:00
|
|
|
|
public void CreateReport(ExcelClientsConsultationInfo info)
|
2024-05-26 22:36:40 +04:00
|
|
|
|
{
|
|
|
|
|
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;
|
2024-05-28 03:11:22 +04:00
|
|
|
|
foreach (var ch in info.ClientsConsultation)
|
2024-05-26 22:36:40 +04:00
|
|
|
|
{
|
|
|
|
|
InsertCellInWorksheet(new ExcelCellParameters
|
|
|
|
|
{
|
|
|
|
|
ColumnName = "A",
|
|
|
|
|
RowIndex = rowIndex,
|
|
|
|
|
Text = ch.ClientFIO,
|
|
|
|
|
StyleInfo = ExcelStyleInfoType.Text
|
|
|
|
|
});
|
|
|
|
|
rowIndex++;
|
|
|
|
|
foreach (var hearing in ch.Hearings)
|
|
|
|
|
{
|
|
|
|
|
InsertCellInWorksheet(new ExcelCellParameters
|
|
|
|
|
{
|
|
|
|
|
ColumnName = "B",
|
|
|
|
|
RowIndex = rowIndex,
|
|
|
|
|
Text = hearing.Court,
|
|
|
|
|
StyleInfo =
|
|
|
|
|
ExcelStyleInfoType.TextWithBroder
|
|
|
|
|
});
|
|
|
|
|
InsertCellInWorksheet(new ExcelCellParameters
|
|
|
|
|
{
|
|
|
|
|
ColumnName = "C",
|
|
|
|
|
RowIndex = rowIndex,
|
|
|
|
|
Text = hearing.HearingDate.ToString(),
|
|
|
|
|
StyleInfo =
|
|
|
|
|
ExcelStyleInfoType.TextWithBroder
|
|
|
|
|
});
|
|
|
|
|
rowIndex++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
SaveExcel(info);
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Создание excel-файла
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="info"></param>
|
2024-05-28 03:11:22 +04:00
|
|
|
|
protected abstract void CreateExcel(ExcelClientsConsultationInfo info);
|
2024-05-26 22:36:40 +04:00
|
|
|
|
/// <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>
|
2024-05-28 03:11:22 +04:00
|
|
|
|
protected abstract void SaveExcel(ExcelClientsConsultationInfo info);
|
2024-05-26 22:36:40 +04:00
|
|
|
|
}
|
|
|
|
|
}
|