2024-02-06 12:37:25 +04:00
|
|
|
|
using GiftShopContracts.BindingModels;
|
|
|
|
|
using GiftShopContracts.BusinessLogicsContracts;
|
|
|
|
|
using GiftShopContracts.SearchModels;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
|
|
|
|
|
namespace GiftShopView
|
|
|
|
|
{
|
2024-05-16 10:17:58 +04:00
|
|
|
|
public partial class FormCreateOrder : Form
|
|
|
|
|
{
|
|
|
|
|
private readonly ILogger _logger;
|
2024-02-06 12:37:25 +04:00
|
|
|
|
|
2024-05-16 10:17:58 +04:00
|
|
|
|
private readonly IGiftLogic _logicP;
|
2024-02-06 12:37:25 +04:00
|
|
|
|
|
2024-05-16 10:17:58 +04:00
|
|
|
|
private readonly IOrderLogic _logicO;
|
2024-02-06 12:37:25 +04:00
|
|
|
|
|
2024-05-16 10:17:58 +04:00
|
|
|
|
private readonly IClientLogic _logicC;
|
2024-02-06 12:37:25 +04:00
|
|
|
|
|
2024-05-16 10:17:58 +04:00
|
|
|
|
public FormCreateOrder(ILogger<FormCreateOrder> logger, IGiftLogic logicP, IOrderLogic logicO, IClientLogic logicC)
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
_logger = logger;
|
|
|
|
|
_logicP = logicP;
|
|
|
|
|
_logicO = logicO;
|
|
|
|
|
_logicC = logicC;
|
|
|
|
|
}
|
2024-02-06 12:37:25 +04:00
|
|
|
|
|
2024-05-16 10:17:58 +04:00
|
|
|
|
private void FormCreateOrder_Load(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogInformation("Загрузка изделий для заказа");
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
2024-02-06 12:37:25 +04:00
|
|
|
|
|
2024-05-16 10:17:58 +04:00
|
|
|
|
private void LoadData()
|
|
|
|
|
{
|
|
|
|
|
_logger.LogInformation("Загрузка изделий для заказа");
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var list = _logicP.ReadList(null);
|
|
|
|
|
if (list != null)
|
|
|
|
|
{
|
|
|
|
|
comboBoxGift.DisplayMember = "GiftName";
|
|
|
|
|
comboBoxGift.ValueMember = "ID";
|
|
|
|
|
comboBoxGift.DataSource = list;
|
|
|
|
|
comboBoxGift.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 = "Клиент";
|
|
|
|
|
comboBoxClient.ValueMember = "Id";
|
|
|
|
|
comboBoxClient.DataSource = list.Select(c => c.ClientFIO).ToList();
|
|
|
|
|
comboBoxClient.SelectedItem = null;
|
|
|
|
|
}
|
2024-02-06 12:37:25 +04:00
|
|
|
|
|
2024-05-16 10:17:58 +04:00
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Ошибка загрузки списка клиентов");
|
|
|
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-02-06 12:37:25 +04:00
|
|
|
|
|
2024-05-16 10:17:58 +04:00
|
|
|
|
private void CalcSum()
|
|
|
|
|
{
|
|
|
|
|
if (comboBoxGift.SelectedValue != null && !string.IsNullOrEmpty(textBoxCount.Text))
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
int id = Convert.ToInt32(comboBoxGift.SelectedValue);
|
|
|
|
|
var product = _logicP.ReadElement(new GiftSearchModel
|
|
|
|
|
{
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-02-06 12:37:25 +04:00
|
|
|
|
|
2024-05-16 10:17:58 +04:00
|
|
|
|
private void TextBoxCount_TextChanged(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
CalcSum();
|
|
|
|
|
}
|
2024-02-06 12:37:25 +04:00
|
|
|
|
|
2024-05-16 10:17:58 +04:00
|
|
|
|
private void ComboBoxGift_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 (comboBoxGift.SelectedValue == null)
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show("Выберите изделие", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("Создание заказа");
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var operationResult = _logicO.CreateOrder(new OrderBindingModel
|
|
|
|
|
{
|
|
|
|
|
GiftId = Convert.ToInt32(comboBoxGift.SelectedValue),
|
|
|
|
|
GiftName = comboBoxGift.Text,
|
|
|
|
|
ClientId = Convert.ToInt32(comboBoxClient.SelectedIndex),
|
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-02-06 12:37:25 +04:00
|
|
|
|
}
|