143 lines
5.6 KiB
C#
143 lines
5.6 KiB
C#
using Microsoft.Extensions.Logging;
|
|
using ShipyardContracts.BindingModels;
|
|
using ShipyardContracts.BusinessLogicsContracts;
|
|
using ShipyardContracts.SearchModels;
|
|
|
|
namespace ShipyardView
|
|
{
|
|
public partial class FormCreateOrder : Form
|
|
{
|
|
private readonly ILogger _logger;
|
|
private readonly IShipLogic _logicS;
|
|
private readonly IOrderLogic _logicO;
|
|
private readonly IClientLogic _logicC;
|
|
public FormCreateOrder(ILogger<FormCreateOrder> logger, IShipLogic logicS, IOrderLogic logicO, IClientLogic logicC)
|
|
{
|
|
InitializeComponent();
|
|
_logger = logger;
|
|
_logicS = logicS;
|
|
_logicO = logicO;
|
|
_logicC = logicC;
|
|
}
|
|
|
|
private void FormCreateOrder_Load(object sender, EventArgs e)
|
|
{
|
|
_logger.LogInformation("Загрузка кораблей для заказа");
|
|
try
|
|
{
|
|
var list = _logicS.ReadList(null);
|
|
if (list != null)
|
|
{
|
|
comboBoxShips.DisplayMember = "ShipName";
|
|
comboBoxShips.ValueMember = "Id";
|
|
comboBoxShips.DataSource = list;
|
|
comboBoxShips.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)
|
|
{
|
|
comboBoxClients.DisplayMember = "ClientFIO";
|
|
comboBoxClients.ValueMember = "Id";
|
|
comboBoxClients.DataSource = list;
|
|
comboBoxClients.SelectedItem = null;
|
|
}
|
|
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Ошибка загрузки списка клиентов");
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
}
|
|
}
|
|
private void CalcSum()
|
|
{
|
|
if (comboBoxShips.SelectedValue != null &&
|
|
!string.IsNullOrEmpty(textBoxCount.Text))
|
|
{
|
|
try
|
|
{
|
|
int id = Convert.ToInt32(comboBoxShips.SelectedValue);
|
|
var product = _logicS.ReadElement(new ShipSearchModel
|
|
{
|
|
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);
|
|
}
|
|
}
|
|
}
|
|
|
|
private void TextBoxCount_TextChanged(object sender, EventArgs e)
|
|
{
|
|
CalcSum();
|
|
}
|
|
|
|
private void ComboBoxShips_SelectedIndexChanged(object sender, EventArgs e)
|
|
{
|
|
CalcSum();
|
|
}
|
|
private void ButtonSave_Click(object sender, EventArgs e)
|
|
{
|
|
if (string.IsNullOrEmpty(textBoxCount.Text))
|
|
{
|
|
MessageBox.Show("Заполните поле Количество", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
return;
|
|
}
|
|
if (comboBoxShips.SelectedValue == null)
|
|
{
|
|
MessageBox.Show("Выберите корабль", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
return;
|
|
}
|
|
if (comboBoxClients.SelectedValue == null)
|
|
{
|
|
MessageBox.Show("Выберите Клиента", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
return;
|
|
}
|
|
_logger.LogInformation("Создание заказа");
|
|
try
|
|
{
|
|
var operationResult = _logicO.CreateOrder(new OrderBindingModel
|
|
{
|
|
ShipId = Convert.ToInt32(comboBoxShips.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);
|
|
}
|
|
|
|
}
|
|
private void ButtonCancel_Click(object sender, EventArgs e)
|
|
{
|
|
DialogResult = DialogResult.Cancel;
|
|
Close();
|
|
}
|
|
}
|
|
} |