160 lines
4.4 KiB
C#
160 lines
4.4 KiB
C#
using BankYouBankruptBusinessLogic.BusinessLogics;
|
||
using BankYouBankruptContracts.BindingModels;
|
||
using BankYouBankruptContracts.BusinessLogicsContracts;
|
||
using BankYouBankruptContracts.SearchModels;
|
||
using BankYouBankruptContracts.ViewModels;
|
||
using BankYouBankruptRestApi.Controllers;
|
||
using DocumentFormat.OpenXml.Office2016.Drawing.ChartDrawing;
|
||
using Microsoft.AspNetCore.Mvc;
|
||
using Org.BouncyCastle.Utilities;
|
||
using System.Net;
|
||
|
||
namespace BankYouBankruptRestAPI.Controllers
|
||
{
|
||
//указание у контроллера, что Route будет строиться не только по наванию контроллера, но и по названию метода (так как у нас два Post-метода)
|
||
[Route("api/[controller]/[action]")]
|
||
[ApiController]
|
||
public class ReportController : Controller
|
||
{
|
||
private readonly ILogger _logger;
|
||
|
||
private readonly IReportClientLogic _reportClientLogic;
|
||
|
||
private readonly IReportCashierLogic _reportCashierLogic;
|
||
|
||
//хранят данные для отображения отчёта на вебе
|
||
private ReportClientViewModelForHTML _reportClientViewModelForHTML;
|
||
|
||
private ReportCashierViewModelForHTML _reportCashierViewModelForHTML;
|
||
|
||
public ReportController(ILogger<ReportController> logger, IReportClientLogic reportClientLogic, IReportCashierLogic reportCashierLogic)
|
||
{
|
||
_logger = logger;
|
||
_reportClientLogic = reportClientLogic;
|
||
_reportCashierLogic = reportCashierLogic;
|
||
}
|
||
|
||
//метод генерации отчёта за период по картам клиента
|
||
[HttpPost]
|
||
public ReportClientViewModelForHTML CreateClientReport(ReportSupportBindingModel model)
|
||
{
|
||
try
|
||
{
|
||
var result = _reportClientLogic.SaveClientReportToPdfFile(new ReportBindingModel
|
||
{
|
||
FileName = "Отчёт_по_картам.pdf",
|
||
DateFrom = model.DateFrom,
|
||
DateTo = model.DateTo
|
||
});
|
||
|
||
return result;
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
_logger.LogError(ex, "Ошибка входа в систему");
|
||
throw;
|
||
}
|
||
}
|
||
|
||
//метод генерации отчёта по всем счетм клиентов
|
||
[HttpPost]
|
||
public ReportCashierViewModelForHTML CreateCashierReport(ReportSupportBindingModel model)
|
||
{
|
||
try
|
||
{
|
||
var result = _reportCashierLogic.SaveAccountsToPdfFile(new ReportBindingModel
|
||
{
|
||
FileName = "Отчёт_по_счетам.pdf",
|
||
ClientId = model.ClientId,
|
||
DateFrom = model.DateFrom,
|
||
DateTo = model.DateTo
|
||
});
|
||
|
||
return result;
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
_logger.LogError(ex, "Ошибка входа в систему");
|
||
throw;
|
||
}
|
||
}
|
||
|
||
//передача данных из отчёта клиента
|
||
[HttpPost]
|
||
public void CreateExcelClient(ReportSupportBindingModel model)
|
||
{
|
||
try
|
||
{
|
||
_reportClientLogic.SaveToExcelFile(new ReportBindingModel
|
||
{
|
||
FileName = "Отчёт_по_переводам",
|
||
CardList = model.CardList
|
||
});
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
_logger.LogError(ex, "Ошибка входа в систему");
|
||
throw;
|
||
}
|
||
}
|
||
|
||
//передача данных из отчёта кассира
|
||
[HttpGet]
|
||
public ReportCashierViewModelForHTML GetDataOfCashierReport()
|
||
{
|
||
try
|
||
{
|
||
return _reportCashierViewModelForHTML;
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
_logger.LogError(ex, "Ошибка входа в систему");
|
||
throw;
|
||
}
|
||
}
|
||
|
||
/*
|
||
//метод генерации отчёта за период по картам клиента
|
||
[HttpPost]
|
||
public void CreateClientReport(ReportSupportBindingModel model)
|
||
{
|
||
try
|
||
{
|
||
_reportClientViewModelForHTML = _reportClientLogic.SaveClientReportToPdfFile(new ReportBindingModel
|
||
{
|
||
FileName = "Отчёт_по_картам.pdf",
|
||
DateFrom = model.DateFrom,
|
||
DateTo = model.DateTo
|
||
});
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
_logger.LogError(ex, "Ошибка входа в систему");
|
||
throw;
|
||
}
|
||
}
|
||
|
||
//метод генерации отчёта по всем счетм клиентов
|
||
[HttpPost]
|
||
public void CreateCashierReport(ReportSupportBindingModel model)
|
||
{
|
||
try
|
||
{
|
||
_reportCashierViewModelForHTML = _reportCashierLogic.SaveAccountsToPdfFile(new ReportBindingModel
|
||
{
|
||
FileName = "Отчёт_по_счетам.pdf",
|
||
ClientId = model.ClientId,
|
||
DateFrom = model.DateFrom,
|
||
DateTo = model.DateTo
|
||
});
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
_logger.LogError(ex, "Ошибка входа в систему");
|
||
throw;
|
||
}
|
||
}
|
||
*/
|
||
}
|
||
}
|