117 lines
4.3 KiB
C#
117 lines
4.3 KiB
C#
using FoodOrdersContracts.BusinessLogicsContracts;
|
|
using FoodOrdersContracts.SearchModels;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace FoodOrdersView
|
|
{
|
|
public partial class FormMakeShipment : Form
|
|
{
|
|
private readonly ILogger _logger;
|
|
|
|
private readonly IDishLogic _logicDish;
|
|
|
|
private readonly IShopLogic _logicShop;
|
|
|
|
public FormMakeShipment(ILogger<FormMakeShipment> logger, IDishLogic logicDish, IShopLogic logicShop)
|
|
{
|
|
InitializeComponent();
|
|
_logger = logger;
|
|
_logicDish = logicDish;
|
|
_logicShop = logicShop;
|
|
}
|
|
|
|
private void FormMakeShipment_Load(object sender, EventArgs e)
|
|
{
|
|
_logger.LogInformation("Dishs loading");
|
|
try
|
|
{
|
|
var list = _logicDish.ReadList(null);
|
|
if (list != null)
|
|
{
|
|
comboBoxDish.DisplayMember = "DishName";
|
|
comboBoxDish.ValueMember = "Id";
|
|
comboBoxDish.DataSource = list;
|
|
comboBoxDish.SelectedItem = null;
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Dishs loading error");
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
}
|
|
_logger.LogInformation("Shops loading");
|
|
try
|
|
{
|
|
var list = _logicShop.ReadList(null);
|
|
if (list != null)
|
|
{
|
|
comboBoxShop.DisplayMember = "ShopName";
|
|
comboBoxShop.ValueMember = "Id";
|
|
comboBoxShop.DataSource = list;
|
|
comboBoxShop.SelectedItem = null;
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Shops loading error");
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
}
|
|
}
|
|
|
|
private void ButtonSave_Click(object sender, EventArgs e)
|
|
{
|
|
if (comboBoxShop.SelectedValue == null)
|
|
{
|
|
MessageBox.Show("Выберите магазин", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
return;
|
|
}
|
|
if (comboBoxDish.SelectedValue == null)
|
|
{
|
|
MessageBox.Show("Выберите блюдо", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
return;
|
|
}
|
|
if (string.IsNullOrEmpty(textBoxCount.Text))
|
|
{
|
|
MessageBox.Show("Заполните поле Количество", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
return;
|
|
}
|
|
_logger.LogInformation("Shop replenishment");
|
|
try
|
|
{
|
|
var dish = _logicDish.ReadElement(new DishSearchModel
|
|
{ Id = Convert.ToInt32(comboBoxDish.SelectedValue) });
|
|
if (dish == null)
|
|
{
|
|
throw new Exception("Блюдо не найдено.");
|
|
}
|
|
var operationResult = _logicShop.MakeShipment(new ShopSearchModel
|
|
{
|
|
Id = Convert.ToInt32(comboBoxShop.SelectedValue)
|
|
},
|
|
dish,
|
|
Convert.ToInt32(textBoxCount.Text));
|
|
if (!operationResult)
|
|
{
|
|
throw new Exception("Ошибка при проведении поставки.");
|
|
}
|
|
MessageBox.Show("Сохранение прошло успешно", "Сообщение", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
DialogResult = DialogResult.OK;
|
|
Close();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Shop replenishment error");
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
}
|
|
DialogResult = DialogResult.OK;
|
|
Close();
|
|
}
|
|
|
|
private void ButtonCancel_Click(object sender, EventArgs e)
|
|
{
|
|
DialogResult = DialogResult.Cancel;
|
|
Close();
|
|
}
|
|
}
|
|
}
|