117 lines
4.4 KiB
C#
117 lines
4.4 KiB
C#
|
using IceCreamShopContracts.BusinessLogicsContracts;
|
|||
|
using IceCreamShopContracts.SearchModels;
|
|||
|
using Microsoft.Extensions.Logging;
|
|||
|
|
|||
|
namespace IceCreamShopView
|
|||
|
{
|
|||
|
public partial class FormMakeShipment : Form
|
|||
|
{
|
|||
|
private readonly ILogger _logger;
|
|||
|
|
|||
|
private readonly IIceCreamLogic _logicIceCream;
|
|||
|
|
|||
|
private readonly IShopLogic _logicShop;
|
|||
|
|
|||
|
public FormMakeShipment(ILogger<FormMakeShipment> logger, IIceCreamLogic logicIceCream, IShopLogic logicShop)
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
_logger = logger;
|
|||
|
_logicIceCream = logicIceCream;
|
|||
|
_logicShop = logicShop;
|
|||
|
}
|
|||
|
|
|||
|
private void FormMakeShipment_Load(object sender, EventArgs e)
|
|||
|
{
|
|||
|
_logger.LogInformation("Ice creams loading");
|
|||
|
try
|
|||
|
{
|
|||
|
var list = _logicIceCream.ReadList(null);
|
|||
|
if (list != null)
|
|||
|
{
|
|||
|
comboBoxIceCream.DisplayMember = "IceCreamName";
|
|||
|
comboBoxIceCream.ValueMember = "Id";
|
|||
|
comboBoxIceCream.DataSource = list;
|
|||
|
comboBoxIceCream.SelectedItem = null;
|
|||
|
}
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
_logger.LogError(ex, "Ice creams 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 (comboBoxIceCream.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 iceCream = _logicIceCream.ReadElement(new IceCreamSearchModel
|
|||
|
{ Id = Convert.ToInt32(comboBoxIceCream.SelectedValue) });
|
|||
|
if (iceCream == null)
|
|||
|
{
|
|||
|
throw new Exception("Мороженое не найдено.");
|
|||
|
}
|
|||
|
var operationResult = _logicShop.MakeShipment(new ShopSearchModel
|
|||
|
{
|
|||
|
Id = Convert.ToInt32(comboBoxShop.SelectedValue)
|
|||
|
},
|
|||
|
iceCream,
|
|||
|
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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|