2024-04-12 00:00:13 +04:00
|
|
|
|
using ConfectioneryBusinessLogic.OfficePackage;
|
|
|
|
|
using ConfectioneryBusinessLogic.OfficePackage.HelperModels;
|
|
|
|
|
using ConfectioneryContracts.BindingModels;
|
|
|
|
|
using ConfectioneryContracts.BusinessLogicsContracts;
|
|
|
|
|
using ConfectioneryContracts.SearchModels;
|
|
|
|
|
using ConfectioneryContracts.StoragesContracts;
|
|
|
|
|
using ConfectioneryContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace ConfectioneryBusinessLogic
|
|
|
|
|
{
|
2024-04-12 01:04:02 +04:00
|
|
|
|
public class ReportLogic : IReportLogic
|
2024-04-12 00:00:13 +04:00
|
|
|
|
{
|
|
|
|
|
private readonly IComponentStorage _componentStorage;
|
2024-04-25 23:08:31 +04:00
|
|
|
|
private readonly IPastryStorage _pastryStorage;
|
2024-04-12 00:00:13 +04:00
|
|
|
|
private readonly IOrderStorage _orderStorage;
|
|
|
|
|
private readonly AbstractSaveToExcel _saveToExcel;
|
|
|
|
|
private readonly AbstractSaveToWord _saveToWord;
|
|
|
|
|
private readonly AbstractSaveToPdf _saveToPdf;
|
2024-04-25 23:08:31 +04:00
|
|
|
|
public ReportLogic(IPastryStorage pastryStorage, IComponentStorage componentStorage, IOrderStorage orderStorage, AbstractSaveToExcel saveToExcel,
|
|
|
|
|
AbstractSaveToWord saveToWord, AbstractSaveToPdf saveToPdf)
|
2024-04-12 00:00:13 +04:00
|
|
|
|
{
|
2024-04-25 23:08:31 +04:00
|
|
|
|
_pastryStorage = pastryStorage;
|
2024-04-12 00:00:13 +04:00
|
|
|
|
_componentStorage = componentStorage;
|
|
|
|
|
_orderStorage = orderStorage;
|
|
|
|
|
_saveToExcel = saveToExcel;
|
|
|
|
|
_saveToWord = saveToWord;
|
|
|
|
|
_saveToPdf = saveToPdf;
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Получение списка компонент с указанием, в каких изделиях используются
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public List<ReportPastryComponentViewModel> GetPastryComponent()
|
|
|
|
|
{
|
2024-04-25 23:22:35 +04:00
|
|
|
|
return _pastryStorage.GetFullList().Select(x => new ReportPastryComponentViewModel
|
2024-04-12 00:00:13 +04:00
|
|
|
|
{
|
2024-04-25 23:22:35 +04:00
|
|
|
|
PastryName = x.PastryName,
|
|
|
|
|
Components = x.PastryComponents.Select(x => (x.Value.Item1.ComponentName, x.Value.Item2)).ToList(),
|
|
|
|
|
TotalCount = x.PastryComponents.Select(x => x.Value.Item2).Sum()
|
|
|
|
|
}).ToList();
|
2024-04-12 00:00:13 +04:00
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Получение списка заказов за определенный период
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="model"></param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public List<ReportOrdersViewModel> GetOrders(ReportBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
return _orderStorage.GetFilteredList(new OrderSearchModel
|
|
|
|
|
{
|
|
|
|
|
DateFrom
|
|
|
|
|
= model.DateFrom,
|
|
|
|
|
DateTo = model.DateTo
|
|
|
|
|
})
|
|
|
|
|
.Select(x => new ReportOrdersViewModel
|
|
|
|
|
{
|
|
|
|
|
Id = x.Id,
|
|
|
|
|
DateCreate = x.DateCreate,
|
|
|
|
|
PastryName = x.PastryName,
|
2024-04-25 21:56:17 +04:00
|
|
|
|
Sum = x.Sum,
|
|
|
|
|
Status = x.Status.ToString()
|
2024-04-12 00:00:13 +04:00
|
|
|
|
})
|
|
|
|
|
.ToList();
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Сохранение компонент в файл-Word
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="model"></param>
|
|
|
|
|
public void SaveComponentsToWordFile(ReportBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
_saveToWord.CreateDoc(new WordInfo
|
|
|
|
|
{
|
|
|
|
|
FileName = model.FileName,
|
2024-04-25 23:08:31 +04:00
|
|
|
|
Title = "Список изделий",
|
|
|
|
|
Pastrys = _pastryStorage.GetFullList()
|
2024-04-12 00:00:13 +04:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Сохранение компонент с указаеним продуктов в файл-Excel
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="model"></param>
|
|
|
|
|
public void SavePastryComponentToExcelFile(ReportBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
_saveToExcel.CreateReport(new ExcelInfo
|
|
|
|
|
{
|
|
|
|
|
FileName = model.FileName,
|
2024-04-25 23:08:31 +04:00
|
|
|
|
Title = "Список компонентов",
|
2024-04-12 00:00:13 +04:00
|
|
|
|
PastryComponents = GetPastryComponent()
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Сохранение заказов в файл-Pdf
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="model"></param>
|
|
|
|
|
public void SaveOrdersToPdfFile(ReportBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
_saveToPdf.CreateDoc(new PdfInfo
|
|
|
|
|
{
|
|
|
|
|
FileName = model.FileName,
|
|
|
|
|
Title = "Список заказов",
|
|
|
|
|
DateFrom = model.DateFrom!.Value,
|
|
|
|
|
DateTo = model.DateTo!.Value,
|
|
|
|
|
Orders = GetOrders(model)
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|