202 lines
7.4 KiB
C#
202 lines
7.4 KiB
C#
using AircraftPlantContracts.BindingModels;
|
|
using AircraftPlantContracts.BusinessLogicsContracts;
|
|
using AircraftPlantContracts.SearchModels;
|
|
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
|
|
{
|
|
public partial class FormCreateOrder : Form
|
|
{
|
|
/// <summary>
|
|
/// Логгер
|
|
/// </summary>
|
|
private readonly ILogger _logger;
|
|
|
|
/// <summary>
|
|
/// Бизнес-логика для изделий
|
|
/// </summary>
|
|
private readonly IPlaneLogic _logicP;
|
|
|
|
/// <summary>
|
|
/// Бизнес-логика для клиентов
|
|
/// </summary>
|
|
private readonly IClientLogic _logicC;
|
|
|
|
/// <summary>
|
|
/// Бизнес-логика для заказов
|
|
/// </summary>
|
|
private readonly IOrderLogic _logicO;
|
|
|
|
/// <summary>
|
|
/// Конструктор
|
|
/// </summary>
|
|
/// <param name="logger"></param>
|
|
/// <param name="logicP"></param>
|
|
/// <param name="logicO"></param>
|
|
public FormCreateOrder(ILogger<FormCreateOrder> logger, IPlaneLogic logicP, IOrderLogic logicO, IClientLogic logicC)
|
|
{
|
|
InitializeComponent();
|
|
_logger = logger;
|
|
_logicP = logicP;
|
|
_logicO = logicO;
|
|
_logicC = logicC;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Загрузка списка изделий для заказа
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
private void FormCreateOrder_Load(object sender, EventArgs e)
|
|
{
|
|
_logger.LogInformation("Загрузка изделий для заказа");
|
|
try
|
|
{
|
|
var list = _logicP.ReadList(null);
|
|
if (list != null)
|
|
{
|
|
comboBoxPlane.DisplayMember = "PlaneName";
|
|
comboBoxPlane.ValueMember = "Id";
|
|
comboBoxPlane.DataSource = list;
|
|
comboBoxPlane.SelectedItem = null;
|
|
}
|
|
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Ошибка загрузки списка изделий");
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
}
|
|
|
|
_logger.LogInformation("Загрузка клиентов для заказа");
|
|
try
|
|
{
|
|
var list = _logicC.ReadList(null);
|
|
if (list != null)
|
|
{
|
|
comboBoxClient.DisplayMember = "ClientFIO";
|
|
comboBoxClient.ValueMember = "Id";
|
|
comboBoxClient.DataSource = list;
|
|
comboBoxClient.SelectedItem = null;
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Ошибка загрузки списка клиентов");
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Изменение поля "Количество"
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
private void textBoxCount_TextChanged(object sender, EventArgs e)
|
|
{
|
|
CalcSum();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Изменение значения в выпадающем списке
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
private void comboBoxPlane_SelectedIndexChanged(object sender, EventArgs e)
|
|
{
|
|
CalcSum();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Кнопка "Сохранить"
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
private void buttonSave_Click(object sender, EventArgs e)
|
|
{
|
|
if (string.IsNullOrEmpty(textBoxCount.Text))
|
|
{
|
|
MessageBox.Show("Заполните поле Количество", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
return;
|
|
}
|
|
if (comboBoxPlane.SelectedValue == null)
|
|
{
|
|
MessageBox.Show("Выберите изделие", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
return;
|
|
}
|
|
if (comboBoxClient.SelectedValue == null)
|
|
{
|
|
MessageBox.Show("Выберите клиента", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
return;
|
|
}
|
|
_logger.LogInformation("Создание заказа");
|
|
try
|
|
{
|
|
var operationResult = _logicO.CreateOrder(new OrderBindingModel
|
|
{
|
|
PlaneId = Convert.ToInt32(comboBoxPlane.SelectedValue),
|
|
ClientId = Convert.ToInt32(comboBoxClient.SelectedValue),
|
|
Count = Convert.ToInt32(textBoxCount.Text),
|
|
Sum = Convert.ToDouble(textBoxSum.Text)
|
|
});
|
|
if (!operationResult)
|
|
{
|
|
throw new Exception("Ошибка при создании заказа. Дополнительная информация в логах.");
|
|
}
|
|
MessageBox.Show("Сохранение прошло успешно", "Сообщение", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
DialogResult = DialogResult.OK;
|
|
Close();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Ошибка создания заказа");
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Кнопка "Отмена"
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
private void buttonCancel_Click(object sender, EventArgs e)
|
|
{
|
|
DialogResult = DialogResult.Cancel;
|
|
Close();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Подсчет суммы заказа
|
|
/// </summary>
|
|
private void CalcSum()
|
|
{
|
|
if (comboBoxPlane.SelectedValue != null && !string.IsNullOrEmpty(textBoxCount.Text))
|
|
{
|
|
try
|
|
{
|
|
int id = Convert.ToInt32(comboBoxPlane.SelectedValue);
|
|
var product = _logicP.ReadElement(new PlaneSearchModel { Id = id });
|
|
int count = Convert.ToInt32(textBoxCount.Text);
|
|
textBoxSum.Text = Math.Round(count * (product?.Price ?? 0), 2).ToString();
|
|
_logger.LogInformation("Расчет суммы заказа");
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Ошибка расчета суммы заказа");
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK,
|
|
MessageBoxIcon.Error);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|