2024-04-10 15:15:05 +04:00
|
|
|
|
using ConfectioneryBusinessLogic.OfficePackage.HelperModels;
|
|
|
|
|
using ConfectioneryBusinessLogic.OfficePackage;
|
|
|
|
|
using ConfectioneryContracts.BindingModels;
|
|
|
|
|
using ConfectioneryContracts.BusinessLogicsContracts;
|
|
|
|
|
using ConfectioneryContracts.SearchModels;
|
|
|
|
|
using ConfectioneryContracts.StoragesContracts;
|
|
|
|
|
using ConfectioneryContracts.ViewModels;
|
2024-04-24 05:46:48 +04:00
|
|
|
|
namespace ConfectioneryBusinessLogic.BusinessLogics
|
2024-04-10 15:15:05 +04:00
|
|
|
|
{
|
|
|
|
|
public class ReportLogic : IReportLogic
|
|
|
|
|
{
|
|
|
|
|
private readonly IComponentStorage _componentStorage;
|
|
|
|
|
private readonly IPastryStorage _pastryStorage;
|
|
|
|
|
private readonly IOrderStorage _orderStorage;
|
|
|
|
|
private readonly AbstractSaveToExcel _saveToExcel;
|
|
|
|
|
private readonly AbstractSaveToWord _saveToWord;
|
|
|
|
|
private readonly AbstractSaveToPdf _saveToPdf;
|
|
|
|
|
public ReportLogic(IPastryStorage pastryStorage, IComponentStorage
|
2024-04-24 05:46:48 +04:00
|
|
|
|
componentStorage, IOrderStorage orderStorage, AbstractSaveToExcel
|
2024-04-10 15:15:05 +04:00
|
|
|
|
saveToExcel, AbstractSaveToWord saveToWord,
|
|
|
|
|
AbstractSaveToPdf saveToPdf)
|
|
|
|
|
{
|
|
|
|
|
_pastryStorage = pastryStorage;
|
|
|
|
|
_componentStorage = componentStorage;
|
|
|
|
|
_orderStorage = orderStorage;
|
|
|
|
|
_saveToExcel = saveToExcel;
|
|
|
|
|
_saveToWord = saveToWord;
|
|
|
|
|
_saveToPdf = saveToPdf;
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
2024-04-24 05:46:48 +04:00
|
|
|
|
/// Получение списка компонент с указанием, в каких кондитерских
|
|
|
|
|
/// изделиях используются
|
2024-04-10 15:15:05 +04:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public List<ReportPastryComponentViewModel> GetPastryComponent()
|
|
|
|
|
{
|
|
|
|
|
var pastries = _pastryStorage.GetFullList();
|
|
|
|
|
var list = new List<ReportPastryComponentViewModel>();
|
2024-04-24 05:46:48 +04:00
|
|
|
|
foreach (var pastry in pastries)
|
2024-04-10 15:15:05 +04:00
|
|
|
|
{
|
|
|
|
|
var record = new ReportPastryComponentViewModel
|
|
|
|
|
{
|
2024-04-24 05:46:48 +04:00
|
|
|
|
PastryName = pastry.PastryName,
|
|
|
|
|
Components = new List<Tuple<string, int>>(),
|
2024-04-10 15:15:05 +04:00
|
|
|
|
TotalCount = 0
|
|
|
|
|
};
|
2024-04-24 05:46:48 +04:00
|
|
|
|
foreach (var component in pastry.PastryComponents)
|
2024-04-10 15:15:05 +04:00
|
|
|
|
{
|
2024-04-24 05:46:48 +04:00
|
|
|
|
record.Components.Add(new Tuple<string, int>(
|
|
|
|
|
component.Value.Item1.ComponentName,
|
|
|
|
|
component.Value.Item2));
|
|
|
|
|
record.TotalCount += component.Value.Item2;
|
2024-04-10 15:15:05 +04:00
|
|
|
|
}
|
|
|
|
|
list.Add(record);
|
|
|
|
|
}
|
|
|
|
|
return list;
|
|
|
|
|
}
|
|
|
|
|
/// <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-24 05:46:48 +04:00
|
|
|
|
Sum = x.Sum,
|
|
|
|
|
OrderStatus = x.Status.ToString()
|
2024-04-10 15:15:05 +04:00
|
|
|
|
})
|
|
|
|
|
.ToList();
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Сохранение компонент в файл-Word
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="model"></param>
|
|
|
|
|
public void SaveComponentsToWordFile(ReportBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
_saveToWord.CreateDoc(new WordInfo
|
|
|
|
|
{
|
|
|
|
|
FileName = model.FileName,
|
2024-04-24 05:46:48 +04:00
|
|
|
|
Title = "Список кондитерских изделий",
|
|
|
|
|
Pastries = _pastryStorage.GetFullList()
|
2024-04-10 15:15:05 +04:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
2024-04-24 05:46:48 +04:00
|
|
|
|
/// Сохранение компонент с указаеним кондитерских изделий в файл-Excel
|
2024-04-10 15:15:05 +04:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="model"></param>
|
|
|
|
|
public void SavePastryComponentToExcelFile(ReportBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
_saveToExcel.CreateReport(new ExcelInfo
|
|
|
|
|
{
|
|
|
|
|
FileName = model.FileName,
|
2024-04-24 05:46:48 +04:00
|
|
|
|
Title = "Список кондитерских изделий",
|
2024-04-10 15:15:05 +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)
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|