102 lines
3.9 KiB
C#
102 lines
3.9 KiB
C#
using AircraftPlantContracts.BindingModels;
|
||
using AircraftPlantContracts.BusinessLogicsContracts;
|
||
using Microsoft.Extensions.Logging;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.ComponentModel;
|
||
using System.Data;
|
||
using System.Drawing;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
using System.Windows.Forms;
|
||
|
||
namespace AircraftPlantView
|
||
{
|
||
/// <summary>
|
||
/// Форма формирования отчета по изделиям с расшифровкой по компонентам
|
||
/// </summary>
|
||
public partial class FormReportPlaneComponents : Form
|
||
{
|
||
/// <summary>
|
||
/// Логгер
|
||
/// </summary>
|
||
private readonly ILogger _logger;
|
||
|
||
/// <summary>
|
||
/// Взаимодействие с отчетами
|
||
/// </summary>
|
||
private readonly IReportLogic _logic;
|
||
|
||
/// <summary>
|
||
/// Конструктор
|
||
/// </summary>
|
||
public FormReportPlaneComponents(ILogger<FormReportPlaneComponents> logger, IReportLogic logic)
|
||
{
|
||
InitializeComponent();
|
||
_logger = logger;
|
||
_logic = logic;
|
||
}
|
||
|
||
/// <summary>
|
||
/// Загрузка данных
|
||
/// </summary>
|
||
/// <param name="sender"></param>
|
||
/// <param name="e"></param>
|
||
private void FormReportPlaneComponents_Load(object sender, EventArgs e)
|
||
{
|
||
try
|
||
{
|
||
var dict = _logic.GetPlaneComponents();
|
||
if (dict != null)
|
||
{
|
||
dataGridView.Rows.Clear();
|
||
foreach (var elem in dict)
|
||
{
|
||
dataGridView.Rows.Add(new object[] { elem.PlaneName, "", "" });
|
||
foreach (var listElem in elem.Components)
|
||
{
|
||
dataGridView.Rows.Add(new object[] { "", listElem.Item1, listElem.Item2 });
|
||
}
|
||
dataGridView.Rows.Add(new object[] { "Итого", "", elem.TotalCount });
|
||
dataGridView.Rows.Add(Array.Empty<object>());
|
||
}
|
||
}
|
||
_logger.LogInformation("Загрузка списка изделий с расшифровкой по компонентам");
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
_logger.LogError(ex, "Ошибка загрузки списка изделий с расшифровкой по компонентам");
|
||
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||
}
|
||
}
|
||
|
||
/// <summary>
|
||
/// Кнопка "Сохранить в Excel"
|
||
/// </summary>
|
||
/// <param name="sender"></param>
|
||
/// <param name="e"></param>
|
||
private void buttonSaveToExcel_Click(object sender, EventArgs e)
|
||
{
|
||
using var dialog = new SaveFileDialog { Filter = "xlsx|*.xlsx" };
|
||
if (dialog.ShowDialog() == DialogResult.OK)
|
||
{
|
||
try
|
||
{
|
||
_logic.SavePlaneComponentsToExcelFile(new ReportBindingModel
|
||
{
|
||
FileName = dialog.FileName
|
||
});
|
||
_logger.LogInformation("Сохранение списка изделий с расшифровкой по компонентам");
|
||
MessageBox.Show("Выполнено", "Успех", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
_logger.LogError(ex, "Ошибка сохранения списка изделий с расшифровкой по компонентам");
|
||
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|