2023-03-28 00:43:46 +04:00
|
|
|
|
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 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
|
|
|
|
|
componentStorage, IOrderStorage orderStorage,
|
|
|
|
|
AbstractSaveToExcel saveToExcel, AbstractSaveToWord saveToWord,
|
|
|
|
|
AbstractSaveToPdf saveToPdf)
|
|
|
|
|
{
|
|
|
|
|
_pastryStorage = pastryStorage;
|
|
|
|
|
_componentStorage = componentStorage;
|
|
|
|
|
_orderStorage = orderStorage;
|
|
|
|
|
_saveToExcel = saveToExcel;
|
|
|
|
|
_saveToWord = saveToWord;
|
|
|
|
|
_saveToPdf = saveToPdf;
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Получение списка компонент с указанием, в каких изделиях используются
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public List<ReportPastryComponentViewModel> GetPastryComponent()
|
|
|
|
|
{
|
|
|
|
|
var components = _componentStorage.GetFullList();
|
|
|
|
|
var pastries = _pastryStorage.GetFullList();
|
|
|
|
|
var list = new List<ReportPastryComponentViewModel>();
|
2023-04-24 15:29:03 +04:00
|
|
|
|
foreach (var pastry in pastries)
|
2023-03-28 00:43:46 +04:00
|
|
|
|
{
|
|
|
|
|
var record = new ReportPastryComponentViewModel
|
|
|
|
|
{
|
2023-04-24 15:29:03 +04:00
|
|
|
|
PastryName = pastry.PastryName,
|
|
|
|
|
Components = new List<(string Component, int Count)>(),
|
2023-03-28 00:43:46 +04:00
|
|
|
|
TotalCount = 0
|
|
|
|
|
};
|
2023-04-24 15:29:03 +04:00
|
|
|
|
foreach (var component in components)
|
2023-03-28 00:43:46 +04:00
|
|
|
|
{
|
|
|
|
|
if (pastry.PastryComponents.ContainsKey(component.Id))
|
|
|
|
|
{
|
2023-04-24 15:29:03 +04:00
|
|
|
|
record.Components.Add(new (component.ComponentName, pastry.PastryComponents[component.Id].Item2));
|
2023-03-28 00:43:46 +04:00
|
|
|
|
record.TotalCount += pastry.PastryComponents[component.Id].Item2;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
list.Add(record);
|
|
|
|
|
}
|
|
|
|
|
return list;
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Получение списка заказов за определенный период
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="model"></param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public List<ReportOrdersViewModel> GetOrders(ReportBindingModel model)
|
|
|
|
|
{
|
2023-04-10 22:15:47 +04:00
|
|
|
|
var ABC = _orderStorage.GetFilteredList(new OrderSearchModel
|
2023-03-28 00:43:46 +04:00
|
|
|
|
{
|
2023-04-10 22:15:47 +04:00
|
|
|
|
DateFrom = model.DateFrom,
|
2023-03-28 00:43:46 +04:00
|
|
|
|
DateTo = model.DateTo
|
|
|
|
|
})
|
|
|
|
|
.Select(x => new ReportOrdersViewModel
|
|
|
|
|
{
|
|
|
|
|
Id = x.Id,
|
|
|
|
|
DateCreate = x.DateCreate,
|
|
|
|
|
PastryName = x.PastryName,
|
2023-04-10 22:15:47 +04:00
|
|
|
|
Sum = x.Sum,
|
|
|
|
|
Status = x.Status.ToString()
|
2023-03-28 00:43:46 +04:00
|
|
|
|
})
|
|
|
|
|
.ToList();
|
2023-04-10 22:15:47 +04:00
|
|
|
|
|
|
|
|
|
return ABC;
|
2023-03-28 00:43:46 +04:00
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Сохранение компонент в файл-Word
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="model"></param>
|
|
|
|
|
public void SaveComponentsToWordFile(ReportBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
_saveToWord.CreateDoc(new WordInfo
|
|
|
|
|
{
|
|
|
|
|
FileName = model.FileName,
|
2023-04-24 15:29:03 +04:00
|
|
|
|
Title = "Список изделий",
|
|
|
|
|
Pastries = _pastryStorage.GetFullList()
|
2023-03-28 00:43:46 +04:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Сохранение компонент с указаеним продуктов в файл-Excel
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="model"></param>
|
|
|
|
|
public void SavePastryComponentToExcelFile(ReportBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
_saveToExcel.CreateReport(new ExcelInfo
|
|
|
|
|
{
|
|
|
|
|
FileName = model.FileName,
|
2023-04-24 15:29:03 +04:00
|
|
|
|
Title = "Список изделий",
|
2023-03-28 00:43:46 +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)
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|