2024-03-24 00:59:51 +04:00
|
|
|
|
using SushiBarBusinessLogic.OfficePackage.HelperModels;
|
|
|
|
|
using SushiBarBusinessLogic.OfficePackage;
|
|
|
|
|
using SushiBarContracts.BindingModel;
|
|
|
|
|
using SushiBarContracts.BusinessLogicsContracts;
|
|
|
|
|
using SushiBarContracts.SearchModel;
|
|
|
|
|
using SushiBarContracts.StoragesContracts;
|
|
|
|
|
using SushiBarContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace SushiBarBusinessLogic
|
|
|
|
|
{
|
|
|
|
|
public class ReportLogic : IReportLogic
|
|
|
|
|
{
|
|
|
|
|
private readonly IComponentStorage _componentStorage;
|
|
|
|
|
private readonly ISushiStorage _sushiStorage;
|
|
|
|
|
private readonly IOrderStorage _orderStorage;
|
|
|
|
|
private readonly AbstractSaveToExcel _saveToExcel;
|
|
|
|
|
private readonly AbstractSaveToWord _saveToWord;
|
|
|
|
|
private readonly AbstractSaveToPdf _saveToPdf;
|
|
|
|
|
public ReportLogic(ISushiStorage sushiStorage, IComponentStorage componentStorage,
|
|
|
|
|
IOrderStorage orderStorage, AbstractSaveToExcel saveToExcel,
|
|
|
|
|
AbstractSaveToWord saveToWord, AbstractSaveToPdf saveToPdf)
|
|
|
|
|
{
|
|
|
|
|
_sushiStorage = sushiStorage;
|
|
|
|
|
_componentStorage = componentStorage;
|
|
|
|
|
_orderStorage = orderStorage;
|
2024-03-25 00:08:21 +04:00
|
|
|
|
|
2024-03-24 00:59:51 +04:00
|
|
|
|
_saveToExcel = saveToExcel;
|
|
|
|
|
_saveToWord = saveToWord;
|
|
|
|
|
_saveToPdf = saveToPdf;
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Получение списка компонент с указанием, в каких изделиях используются
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns></returns>
|
2024-03-25 00:08:21 +04:00
|
|
|
|
public List<ReportSushiComponentViewModel> GetSushiComponent()
|
2024-03-24 00:59:51 +04:00
|
|
|
|
{
|
|
|
|
|
var components = _componentStorage.GetFullList();
|
|
|
|
|
var sushis = _sushiStorage.GetFullList();
|
2024-03-25 00:08:21 +04:00
|
|
|
|
var list = new List<ReportSushiComponentViewModel>();
|
2024-03-30 19:38:45 +04:00
|
|
|
|
foreach (var sushi in sushis)
|
2024-03-24 00:59:51 +04:00
|
|
|
|
{
|
2024-03-25 00:08:21 +04:00
|
|
|
|
var record = new ReportSushiComponentViewModel
|
2024-03-24 00:59:51 +04:00
|
|
|
|
{
|
2024-03-30 19:38:45 +04:00
|
|
|
|
SushiName = sushi.SushiName,
|
|
|
|
|
Components = new List<Tuple<string, int>>(),
|
2024-03-24 00:59:51 +04:00
|
|
|
|
TotalCount = 0
|
|
|
|
|
};
|
2024-03-30 19:38:45 +04:00
|
|
|
|
foreach (var component in components)
|
2024-03-24 00:59:51 +04:00
|
|
|
|
{
|
|
|
|
|
if (sushi.SushiComponents.ContainsKey(component.Id))
|
|
|
|
|
{
|
2024-03-30 19:38:45 +04:00
|
|
|
|
record.Components.Add(new Tuple<string, int>(component.ComponentName, sushi.SushiComponents[component.Id].Item2));
|
2024-03-24 18:34:36 +04:00
|
|
|
|
record.TotalCount += sushi.SushiComponents[component.Id].Item2;
|
2024-03-24 00:59:51 +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,
|
|
|
|
|
SushiName = x.SushiName,
|
2024-03-30 21:23:52 +04:00
|
|
|
|
Status = x.Status.ToString(),
|
2024-03-24 00:59:51 +04:00
|
|
|
|
Sum = x.Sum
|
|
|
|
|
}).ToList();
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Сохранение компонент в файл-Word
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="model"></param>
|
2024-03-25 10:50:13 +04:00
|
|
|
|
public void SaveSushisToWordFile(ReportBindingModel model)
|
2024-03-24 00:59:51 +04:00
|
|
|
|
{
|
|
|
|
|
_saveToWord.CreateDoc(new WordInfo
|
|
|
|
|
{
|
|
|
|
|
FileName = model.FileName,
|
2024-03-30 19:38:45 +04:00
|
|
|
|
Title = "Список суши",
|
2024-03-25 10:50:13 +04:00
|
|
|
|
Sushi = _sushiStorage.GetFullList()
|
2024-03-24 00:59:51 +04:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Сохранение компонент с указаеним продуктов в файл-Excel
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="model"></param>
|
|
|
|
|
public void SaveSushiComponentToExcelFile(ReportBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
_saveToExcel.CreateReport(new ExcelInfo
|
|
|
|
|
{
|
|
|
|
|
FileName = model.FileName,
|
2024-03-30 19:38:45 +04:00
|
|
|
|
Title = "Список изделий",
|
2024-03-24 00:59:51 +04:00
|
|
|
|
SushiComponents = GetSushiComponent()
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
/// <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,
|
2024-03-30 21:23:52 +04:00
|
|
|
|
Status = model.Status,
|
2024-03-24 00:59:51 +04:00
|
|
|
|
Orders = GetOrders(model)
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|