89 lines
3.3 KiB
C#
89 lines
3.3 KiB
C#
using FishFactoryBusinessLogic.OfficePackage.HelperModels;
|
|
using FishFactoryBusinessLogic.OfficePackage;
|
|
using FishFactoryContracts.BindingModels;
|
|
using FishFactoryContracts.BusinessLogicsContracts;
|
|
using FishFactoryContracts.SearchModels;
|
|
using FishFactoryContracts.StoragesContracts;
|
|
using FishFactoryContracts.ViewModels;
|
|
|
|
namespace FishFactoryBusinessLogic.BusinessLogics
|
|
{
|
|
public class ReportLogic : IReportLogic
|
|
{
|
|
private readonly IComponentStorage _componentStorage;
|
|
private readonly ICannedStorage _cannedStorage;
|
|
private readonly IOrderStorage _orderStorage;
|
|
private readonly AbstractSaveToExcel _saveToExcel;
|
|
private readonly AbstractSaveToWord _saveToWord;
|
|
private readonly AbstractSaveToPdf _saveToPdf;
|
|
|
|
public ReportLogic(ICannedStorage cannedStorage, IComponentStorage componentStorage, IOrderStorage orderStorage,
|
|
AbstractSaveToExcel saveToExcel, AbstractSaveToWord saveToWord, AbstractSaveToPdf saveToPdf)
|
|
{
|
|
_cannedStorage = cannedStorage;
|
|
_componentStorage = componentStorage;
|
|
_orderStorage = orderStorage;
|
|
|
|
_saveToExcel = saveToExcel;
|
|
_saveToWord = saveToWord;
|
|
_saveToPdf = saveToPdf;
|
|
}
|
|
|
|
public List<ReportCannedComponentViewModel> GetCannedComponents()
|
|
{
|
|
return _cannedStorage.GetFullList().Select(x => new ReportCannedComponentViewModel
|
|
{
|
|
CannedName = x.CannedName,
|
|
Components = x.CannedComponents.Select(x => (x.Value.Item1.ComponentName, x.Value.Item2)).ToList(),
|
|
TotalCount = x.CannedComponents.Select(x => x.Value.Item2).Sum()
|
|
}).ToList();
|
|
}
|
|
|
|
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,
|
|
CannedName = x.CannedName,
|
|
Sum = x.Sum,
|
|
Status = x.Status.ToString()
|
|
})
|
|
.ToList();
|
|
}
|
|
|
|
public void SaveCannedsToWordFile(ReportBindingModel model)
|
|
{
|
|
_saveToWord.CreateDoc(new WordInfo
|
|
{
|
|
FileName = model.FileName,
|
|
Title = "Список консерв",
|
|
Canneds = _cannedStorage.GetFullList()
|
|
});
|
|
}
|
|
|
|
public void SaveCannedComponentToExcelFile(ReportBindingModel model)
|
|
{
|
|
_saveToExcel.CreateReport(new ExcelInfo
|
|
{
|
|
FileName = model.FileName,
|
|
Title = "Список консерв",
|
|
CannedComponents = GetCannedComponents()
|
|
});
|
|
}
|
|
|
|
public void SaveOrdersToPdfFile(ReportBindingModel model)
|
|
{
|
|
_saveToPdf.CreateDoc(new PdfInfo
|
|
{
|
|
FileName = model.FileName,
|
|
Title = "Список заказов",
|
|
DateFrom = model.DateFrom!.Value,
|
|
DateTo = model.DateTo!.Value,
|
|
Orders = GetOrders(model)
|
|
});
|
|
}
|
|
}
|
|
}
|