156 lines
5.9 KiB
C#
156 lines
5.9 KiB
C#
using JewelryStoreContracts.BindingModels;
|
|
using JewelryStoreContracts.BusinessLogicsContracts;
|
|
using JewelryStoreContracts.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 JewelryStore
|
|
{
|
|
public partial class FormCreateOrder : Form
|
|
{
|
|
private readonly ILogger _logger;
|
|
private readonly IJewelLogic _logicP;
|
|
private readonly IOrderLogic _logicO;
|
|
private readonly IClientLogic _logicC;
|
|
public FormCreateOrder(ILogger<FormCreateOrder> logger, IJewelLogic logicP, IOrderLogic logicO, IClientLogic logicC)
|
|
{
|
|
InitializeComponent();
|
|
_logger = logger;
|
|
_logicP = logicP;
|
|
_logicO = logicO;
|
|
_logicC = logicC;
|
|
}
|
|
|
|
private void OrderForm_Load(object sender, EventArgs e)
|
|
{
|
|
_logger.LogInformation("Загрузка драгоценностей для заказа");
|
|
try
|
|
{
|
|
var list = _logicP.ReadList(null);
|
|
if (list != null)
|
|
{
|
|
comboBoxJewel.DisplayMember = "Драгоценность";
|
|
comboBoxJewel.ValueMember = "Id";
|
|
comboBoxJewel.DataSource = list.Select(c => c.JewelName).ToList();
|
|
comboBoxJewel.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;
|
|
}
|
|
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Ошибка загрузки списка клиентов");
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
}
|
|
}
|
|
private void CalcSum()
|
|
{
|
|
if (comboBoxJewel.SelectedValue != null && !string.IsNullOrEmpty(textBoxCount.Text))
|
|
{
|
|
try
|
|
{
|
|
int id = Convert.ToInt32(comboBoxJewel.SelectedIndex) + 1;
|
|
var Jewel = _logicP.ReadElement(new JewelSearchModel
|
|
{
|
|
Id = id
|
|
});
|
|
int count = Convert.ToInt32(textBoxCount.Text);
|
|
textBoxSum.Text = Math.Round(count * (Jewel?.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 buttonSave_Click(object sender, EventArgs e)
|
|
{
|
|
if (string.IsNullOrEmpty(textBoxCount.Text))
|
|
{
|
|
MessageBox.Show("Заполните поле Количество", "Ошибка",
|
|
MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
return;
|
|
}
|
|
if (comboBoxJewel.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
|
|
{
|
|
JewelId = Convert.ToInt32(comboBoxJewel.SelectedIndex) + 1,
|
|
JewelName = comboBoxJewel.Text,
|
|
ClientId = Convert.ToInt32(comboBoxClient.SelectedIndex) + 1,
|
|
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();
|
|
}
|
|
|
|
|
|
}
|
|
}
|