135 lines
5.2 KiB
C#
135 lines
5.2 KiB
C#
using ConfectioneryContracts.BindingModels;
|
|
using ConfectioneryContracts.BusinessLogicsContracts;
|
|
using ConfectioneryContracts.SearchModels;
|
|
using ConfectioneryContracts.ViewModels;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
|
namespace ConfectioneryView
|
|
{
|
|
public partial class FormCreateOrder : Form
|
|
{
|
|
private readonly ILogger _logger;
|
|
private readonly IPastryLogic _logicP;
|
|
private readonly IOrderLogic _logicO;
|
|
private readonly IClientLogic _clientLogic;
|
|
private readonly List<PastryViewModel>? _list;
|
|
|
|
public FormCreateOrder(ILogger<FormCreateOrder> logger, IPastryLogic logicP, IOrderLogic logicO, IClientLogic clientLogic)
|
|
{
|
|
InitializeComponent();
|
|
_logger = logger;
|
|
_logicP = logicP;
|
|
_logicO = logicO;
|
|
_clientLogic = clientLogic;
|
|
_list = logicP.ReadList(null);
|
|
if (_list != null)
|
|
{
|
|
comboBoxPastry.DisplayMember = "PastryName";
|
|
comboBoxPastry.ValueMember = "Id";
|
|
comboBoxPastry.DataSource = _list;
|
|
comboBoxPastry.SelectedItem = null;
|
|
}
|
|
var clients = _clientLogic.ReadList(null);
|
|
if (clients != null)
|
|
{
|
|
comboBoxClient.DisplayMember = "clientFIO";
|
|
comboBoxClient.ValueMember = "Id";
|
|
comboBoxClient.DataSource = clients;
|
|
comboBoxClient.SelectedItem = null;
|
|
}
|
|
}
|
|
private void FormCreateOrder_Load(object sender, EventArgs e)
|
|
{
|
|
_logger.LogInformation("Загрузка изделий для заказа");
|
|
foreach (var el in _logicP.ReadList(null) ?? new())
|
|
{
|
|
comboBoxPastry.Items.Add(el.PastryName);
|
|
}
|
|
}
|
|
private void CalcSum()
|
|
{
|
|
if (comboBoxPastry.SelectedValue != null && !string.IsNullOrEmpty(textBoxCount.Text))
|
|
{
|
|
try
|
|
{
|
|
int id = Convert.ToInt32(comboBoxPastry.SelectedValue);
|
|
var pastry = _logicP.ReadElement(new()
|
|
{
|
|
Id = id
|
|
});
|
|
int count = Convert.ToInt32(textBoxCount.Value);
|
|
textBoxSum.Text = Math.Round(count * (pastry?.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 ComboBoxPastry_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 (comboBoxPastry.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
|
|
{
|
|
ClientId = Convert.ToInt32(comboBoxClient.SelectedValue),
|
|
PastryId = Convert.ToInt32(comboBoxPastry.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();
|
|
}
|
|
}
|
|
}
|
|
|