141 lines
5.0 KiB
C#
141 lines
5.0 KiB
C#
using ConfectioneryBusinessLogic.OfficePackage.HelperModels;
|
||
using ConfectioneryBusinessLogic.OfficePackage;
|
||
using ConfectioneryContracts.BindingModels;
|
||
using ConfectioneryContracts.BusinessLogicsContracts;
|
||
using ConfectioneryContracts.SearchModels;
|
||
using ConfectioneryContracts.StoragesContracts;
|
||
using ConfectioneryContracts.ViewModels;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace ConfectioneryBusinessLogic.BusinessLogics
|
||
{
|
||
public class ReportLogic : IReportLogic
|
||
{
|
||
private readonly IIngredientStorage _ingredientStorage;
|
||
|
||
private readonly ISweetsStorage _sweetsStorage;
|
||
|
||
private readonly IOrderStorage _orderStorage;
|
||
|
||
private readonly AbstractSaveToExcel _saveToExcel;
|
||
|
||
private readonly AbstractSaveToWord _saveToWord;
|
||
|
||
private readonly AbstractSaveToPdf _saveToPdf;
|
||
|
||
public ReportLogic(ISweetsStorage SweetsStorage, IIngredientStorage ingredientStorage, IOrderStorage orderStorage,
|
||
AbstractSaveToExcel saveToExcel, AbstractSaveToWord saveToWord, AbstractSaveToPdf saveToPdf)
|
||
{
|
||
_sweetsStorage = SweetsStorage;
|
||
_ingredientStorage = ingredientStorage;
|
||
_orderStorage = orderStorage;
|
||
|
||
_saveToExcel = saveToExcel;
|
||
_saveToWord = saveToWord;
|
||
_saveToPdf = saveToPdf;
|
||
}
|
||
|
||
/// <summary>
|
||
/// Получение списка компонент с указанием, в каких изделиях используются
|
||
/// </summary>
|
||
/// <returns></returns>
|
||
public List<ReportSweetsIngredientViewModel> GetSweetsIngredient()
|
||
{
|
||
var ingredients = _ingredientStorage.GetFullList();
|
||
|
||
var sweets = _sweetsStorage.GetFullList();
|
||
|
||
var list = new List<ReportSweetsIngredientViewModel>();
|
||
|
||
foreach (var sweet in sweets)
|
||
{
|
||
var record = new ReportSweetsIngredientViewModel
|
||
{
|
||
SweetsName = sweet.SweetsName,
|
||
Ingredients = new List<Tuple<string, int>>(),
|
||
TotalCount = 0
|
||
};
|
||
foreach (var ingredient in ingredients)
|
||
{
|
||
if (sweet.SweetsIngredients.ContainsKey(ingredient.Id))
|
||
{
|
||
record.Ingredients.Add(new(ingredient.IngredientName, sweet.SweetsIngredients[ingredient.Id].Item2));
|
||
record.TotalCount += sweet.SweetsIngredients[ingredient.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,
|
||
SweetsName = x.SweetsName,
|
||
OrderStatus = Convert.ToString(x.Status) ?? string.Empty,
|
||
Sum = x.Sum
|
||
})
|
||
.ToList();
|
||
}
|
||
|
||
/// <summary>
|
||
/// Сохранение изделий в файл-Word
|
||
/// </summary>
|
||
/// <param name="model"></param>
|
||
public void SavePastriesToWordFile(ReportBindingModel model)
|
||
{
|
||
_saveToWord.CreateDoc(new WordInfo
|
||
{
|
||
FileName = model.FileName,
|
||
Title = "Список изделий",
|
||
Sweets = _sweetsStorage.GetFullList()
|
||
});
|
||
}
|
||
|
||
/// <summary>
|
||
/// Сохранение изделий с указаеним продуктов в файл-Excel
|
||
/// </summary>
|
||
/// <param name="model"></param>
|
||
public void SavePastryComponentToExcelFile(ReportBindingModel model)
|
||
{
|
||
_saveToExcel.CreateReport(new ExcelInfo
|
||
{
|
||
FileName = model.FileName,
|
||
Title = "Список изделий",
|
||
SweetsIngredients = GetSweetsIngredient()
|
||
});
|
||
}
|
||
|
||
/// <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)
|
||
});
|
||
}
|
||
}
|
||
}
|