117 lines
4.5 KiB
C#
117 lines
4.5 KiB
C#
using AircraftPlantBusinessLogic.OfficePackage.HelperModels;
|
||
using AircraftPlantBusinessLogic.OfficePackage;
|
||
using AircraftPlantContracts.BindingModels;
|
||
using AircraftPlantContracts.BusinessLogicsContracts;
|
||
using AircraftPlantContracts.SearchModels;
|
||
using AircraftPlantContracts.StoragesContracts;
|
||
using AircraftPlantContracts.ViewModels;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace AircraftPlantBusinessLogic.BusinessLogics
|
||
{
|
||
public class ReportLogic : IReportLogic
|
||
{
|
||
private readonly IPlaneStorage _planeStorage;
|
||
private readonly IOrderStorage _orderStorage;
|
||
private readonly AbstractSaveToExcel _saveToExcel;
|
||
private readonly AbstractSaveToWord _saveToWord;
|
||
private readonly AbstractSaveToPdf _saveToPdf;
|
||
public ReportLogic(IPlaneStorage planeStorage, IOrderStorage orderStorage,
|
||
AbstractSaveToExcel saveToExcel, AbstractSaveToWord saveToWord, AbstractSaveToPdf saveToPdf)
|
||
{
|
||
_planeStorage = planeStorage;
|
||
_orderStorage = orderStorage;
|
||
_saveToExcel = saveToExcel;
|
||
_saveToWord = saveToWord;
|
||
_saveToPdf = saveToPdf;
|
||
}
|
||
/// <summary>
|
||
/// Получение списка компонент с указанием, в каких изделиях используются
|
||
/// </summary>
|
||
/// <returns></returns>
|
||
public List<ReportPlaneComponentViewModel> GetPlaneComponent()
|
||
{
|
||
var planes = _planeStorage.GetFullList();
|
||
var list = new List<ReportPlaneComponentViewModel>();
|
||
foreach (var plane in planes)
|
||
{
|
||
var record = new ReportPlaneComponentViewModel
|
||
{
|
||
PlaneName = plane.PlaneName,
|
||
Components = new List<Tuple<string, int>>(),
|
||
TotalCount = 0,
|
||
};
|
||
foreach (var component in plane.PlaneComponents)
|
||
{
|
||
record.Components.Add(new(component.Value.Item1.ComponentName, component.Value.Item2));
|
||
record.TotalCount += component.Value.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,
|
||
PlaneName = x.PlaneName,
|
||
OrderStatus = x.Status.ToString(),
|
||
Sum = x.Sum,
|
||
})
|
||
.ToList();
|
||
}
|
||
/// <summary>
|
||
/// Сохранение компонент в файл-Word
|
||
/// </summary>
|
||
/// <param name="model"></param>
|
||
public void SavePlanesToWordFile(ReportBindingModel model)
|
||
{
|
||
_saveToWord.CreateDoc(new WordInfo
|
||
{
|
||
FileName = model.FileName,
|
||
Title = "Список самолётов",
|
||
Planes = _planeStorage.GetFullList()
|
||
});
|
||
}
|
||
/// <summary>
|
||
/// Сохранение компонент с указаеним продуктов в файл-Excel
|
||
/// </summary>
|
||
/// <param name="model"></param>
|
||
public void SavePlaneComponentToExcelFile(ReportBindingModel model)
|
||
{
|
||
_saveToExcel.CreateReport(new ExcelInfo
|
||
{
|
||
FileName = model.FileName,
|
||
Title = "Список самолётов",
|
||
PlaneComponents = GetPlaneComponent()
|
||
});
|
||
}
|
||
/// <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)
|
||
});
|
||
}
|
||
}
|
||
} |