127 lines
4.8 KiB
C#
127 lines
4.8 KiB
C#
|
using SushiBarBusinessLogic.OfficePackage.HelperModels;
|
|||
|
using SushiBarBusinessLogic.OfficePackage;
|
|||
|
using SushiBarContracts.BindingModel;
|
|||
|
using SushiBarContracts.BusinessLogicsContracts;
|
|||
|
using SushiBarContracts.SearchModel;
|
|||
|
using SushiBarContracts.StoragesContracts;
|
|||
|
using SushiBarContracts.ViewModels;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
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;
|
|||
|
_saveToExcel = saveToExcel;
|
|||
|
_saveToWord = saveToWord;
|
|||
|
_saveToPdf = saveToPdf;
|
|||
|
}
|
|||
|
/// <summary>
|
|||
|
/// Получение списка компонент с указанием, в каких изделиях используются
|
|||
|
/// </summary>
|
|||
|
/// <returns></returns>
|
|||
|
public List<ReportSushisComponentViewModel> GetSushiComponent()
|
|||
|
{
|
|||
|
var components = _componentStorage.GetFullList();
|
|||
|
var sushis = _sushiStorage.GetFullList();
|
|||
|
var list = new List<ReportSushisComponentViewModel>();
|
|||
|
foreach (var component in components)
|
|||
|
{
|
|||
|
var record = new ReportSushisComponentViewModel
|
|||
|
{
|
|||
|
ComponentName = component.ComponentName,
|
|||
|
Sushis = new List<(string, int)>(),
|
|||
|
TotalCount = 0
|
|||
|
};
|
|||
|
foreach (var sushi in sushis)
|
|||
|
{
|
|||
|
if (sushi.SushiComponents.ContainsKey(component.Id))
|
|||
|
{
|
|||
|
record.Sushis.Add((sushi.SushiName, sushi.SushiComponents[component.Id].Item2));
|
|||
|
record.TotalCount +=
|
|||
|
sushi.SushiComponents[component.Id].Item2;
|
|||
|
}
|
|||
|
}
|
|||
|
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,
|
|||
|
Sum = x.Sum
|
|||
|
}).ToList();
|
|||
|
}
|
|||
|
/// <summary>
|
|||
|
/// Сохранение компонент в файл-Word
|
|||
|
/// </summary>
|
|||
|
/// <param name="model"></param>
|
|||
|
public void SaveComponentsToWordFile(ReportBindingModel model)
|
|||
|
{
|
|||
|
_saveToWord.CreateDoc(new WordInfo
|
|||
|
{
|
|||
|
FileName = model.FileName,
|
|||
|
Title = "Список компонент",
|
|||
|
Components = _componentStorage.GetFullList()
|
|||
|
});
|
|||
|
}
|
|||
|
/// <summary>
|
|||
|
/// Сохранение компонент с указаеним продуктов в файл-Excel
|
|||
|
/// </summary>
|
|||
|
/// <param name="model"></param>
|
|||
|
public void SaveSushiComponentToExcelFile(ReportBindingModel model)
|
|||
|
{
|
|||
|
_saveToExcel.CreateReport(new ExcelInfo
|
|||
|
{
|
|||
|
FileName = model.FileName,
|
|||
|
Title = "Список компонент",
|
|||
|
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,
|
|||
|
Orders = GetOrders(model)
|
|||
|
});
|
|||
|
}
|
|||
|
}
|
|||
|
}
|