2023-02-27 09:59:48 +04:00
|
|
|
|
using FurnitureAssemblyBusinessLogic.OfficePackage;
|
|
|
|
|
using FurnitureAssemblyBusinessLogic.OfficePackage.HelperModels;
|
|
|
|
|
using FurnitureAssemblyContracts.BindingModels;
|
|
|
|
|
using FurnitureAssemblyContracts.BusinessLogicsContarcts;
|
|
|
|
|
using FurnitureAssemblyContracts.SearchModels;
|
|
|
|
|
using FurnitureAssemblyContracts.StoragesContracts;
|
|
|
|
|
using FurnitureAssemblyContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace FurnitureAssemblyBusinessLogic
|
|
|
|
|
{
|
|
|
|
|
public class ReportLogic : IReportLogic
|
|
|
|
|
{
|
|
|
|
|
private readonly IComponentStorage _componentStorage;
|
2023-03-11 08:24:40 +04:00
|
|
|
|
private readonly IFurnitureStorage _furnitureStorage;
|
2023-02-27 09:59:48 +04:00
|
|
|
|
private readonly IOrderStorage _orderStorage;
|
|
|
|
|
private readonly AbstractSaveToExcel _saveToExcel;
|
|
|
|
|
private readonly AbstractSaveToWord _saveToWord;
|
|
|
|
|
private readonly AbstractSaveToPdf _saveToPdf;
|
2023-03-11 08:24:40 +04:00
|
|
|
|
public ReportLogic(IFurnitureStorage furnitureStorage, IComponentStorage componentStorage, IOrderStorage orderStorage,
|
2023-03-10 23:22:23 +04:00
|
|
|
|
AbstractSaveToExcel saveToExcel, AbstractSaveToWord saveToWord, AbstractSaveToPdf saveToPdf)
|
2023-02-27 09:59:48 +04:00
|
|
|
|
{
|
2023-03-11 08:24:40 +04:00
|
|
|
|
_furnitureStorage = furnitureStorage;
|
2023-02-27 09:59:48 +04:00
|
|
|
|
_componentStorage = componentStorage;
|
|
|
|
|
_orderStorage = orderStorage;
|
|
|
|
|
_saveToExcel = saveToExcel;
|
|
|
|
|
_saveToWord = saveToWord;
|
|
|
|
|
_saveToPdf = saveToPdf;
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Получение списка компонент с указанием, в каких изделиях используются
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public List<ReportFurnitureComponentViewModel> GetFurnitureComponent()
|
|
|
|
|
{
|
2023-03-11 08:47:04 +04:00
|
|
|
|
var furnitures = _furnitureStorage.GetFullList();
|
2023-02-27 09:59:48 +04:00
|
|
|
|
var components = _componentStorage.GetFullList();
|
|
|
|
|
var list = new List<ReportFurnitureComponentViewModel>();
|
2023-03-11 08:47:04 +04:00
|
|
|
|
foreach (var furniture in furnitures)
|
2023-02-27 09:59:48 +04:00
|
|
|
|
{
|
|
|
|
|
var record = new ReportFurnitureComponentViewModel
|
|
|
|
|
{
|
2023-03-11 08:47:04 +04:00
|
|
|
|
FurnitureName = furniture.FurnitureName,
|
|
|
|
|
Components = new List<Tuple<string, int>>(),
|
2023-02-27 09:59:48 +04:00
|
|
|
|
TotalCount = 0
|
|
|
|
|
};
|
2023-03-11 08:47:04 +04:00
|
|
|
|
foreach (var component in components)
|
2023-02-27 09:59:48 +04:00
|
|
|
|
{
|
2023-03-11 08:47:04 +04:00
|
|
|
|
if (furniture.FurnitureComponents.ContainsKey(component.Id))
|
2023-02-27 09:59:48 +04:00
|
|
|
|
{
|
2023-03-11 08:47:04 +04:00
|
|
|
|
record.Components.Add(new Tuple<string, int>(component.ComponentName, furniture.FurnitureComponents[component.Id].Item2));
|
|
|
|
|
record.TotalCount += furniture.FurnitureComponents[component.Id].Item2;
|
2023-02-27 09:59:48 +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
|
|
|
|
|
{
|
2023-03-10 23:22:23 +04:00
|
|
|
|
DateFrom = model.DateFrom,
|
2023-02-27 09:59:48 +04:00
|
|
|
|
DateTo = model.DateTo
|
|
|
|
|
})
|
|
|
|
|
.Select(x => new ReportOrdersViewModel
|
|
|
|
|
{
|
|
|
|
|
Id = x.Id,
|
|
|
|
|
DateCreate = x.DateCreate,
|
|
|
|
|
FurnitureName = x.FurnitureName,
|
2023-03-10 23:22:23 +04:00
|
|
|
|
Sum = x.Sum,
|
|
|
|
|
OrderStatus = x.Status.ToString()
|
2023-02-27 09:59:48 +04:00
|
|
|
|
})
|
|
|
|
|
.ToList();
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Сохранение компонент в файл-Word
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="model"></param>
|
2023-03-11 08:24:40 +04:00
|
|
|
|
public void SaveFurnituresToWordFile(ReportBindingModel model)
|
2023-02-27 09:59:48 +04:00
|
|
|
|
{
|
|
|
|
|
_saveToWord.CreateDoc(new WordInfo
|
|
|
|
|
{
|
|
|
|
|
FileName = model.FileName,
|
2023-03-11 08:24:40 +04:00
|
|
|
|
Title = "Список изделий",
|
|
|
|
|
Furnitures = _furnitureStorage.GetFullList()
|
2023-02-27 09:59:48 +04:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Сохранение компонент с указаеним продуктов в файл-Excel
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="model"></param>
|
|
|
|
|
public void SaveFurnitureComponentToExcelFile(ReportBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
_saveToExcel.CreateReport(new ExcelInfo
|
|
|
|
|
{
|
|
|
|
|
FileName = model.FileName,
|
2023-03-11 08:47:04 +04:00
|
|
|
|
Title = "Список изделий",
|
2023-02-27 09:59:48 +04:00
|
|
|
|
FurnitureComponents = GetFurnitureComponent()
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
/// <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)
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|