126 lines
4.5 KiB
C#
126 lines
4.5 KiB
C#
|
using FoodOrdersContracts.BindingModels;
|
|||
|
using FoodOrdersContracts.BusinessLogicsContracts;
|
|||
|
using FoodOrdersContracts.SearchModels;
|
|||
|
using FoodOrdersDataModels.Models;
|
|||
|
using Microsoft.Extensions.Logging;
|
|||
|
|
|||
|
namespace FoodOrdersView
|
|||
|
{
|
|||
|
public partial class FormShop : Form
|
|||
|
{
|
|||
|
private readonly ILogger _logger;
|
|||
|
|
|||
|
private readonly IShopLogic _logic;
|
|||
|
|
|||
|
private int? _id;
|
|||
|
|
|||
|
private Dictionary<int, (IDishModel, int)> _shopDishs;
|
|||
|
|
|||
|
public int Id { set { _id = value; } }
|
|||
|
|
|||
|
public FormShop(ILogger<FormShop> logger, IShopLogic logic)
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
_logger = logger;
|
|||
|
_logic = logic;
|
|||
|
_shopDishs = new Dictionary<int, (IDishModel, int)>();
|
|||
|
}
|
|||
|
|
|||
|
private void FormShop_Load(object sender, EventArgs e)
|
|||
|
{
|
|||
|
if (_id.HasValue)
|
|||
|
{
|
|||
|
_logger.LogInformation("Shop loading");
|
|||
|
try
|
|||
|
{
|
|||
|
var view = _logic.ReadElement(new ShopSearchModel { Id = _id.Value });
|
|||
|
if (view != null)
|
|||
|
{
|
|||
|
textBoxName.Text = view.ShopName;
|
|||
|
textBoxAddress.Text = view.Address;
|
|||
|
dateTimePicker.Value = view.DateOpening;
|
|||
|
_shopDishs = view.ShopDishs ?? new Dictionary<int, (IDishModel, int)>();
|
|||
|
LoadData();
|
|||
|
}
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
_logger.LogError(ex, "Shop loading error");
|
|||
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
private void LoadData()
|
|||
|
{
|
|||
|
_logger.LogInformation("Shop ice creams loading");
|
|||
|
try
|
|||
|
{
|
|||
|
if (_shopDishs != null)
|
|||
|
{
|
|||
|
dataGridView.Rows.Clear();
|
|||
|
foreach (var dish in _shopDishs)
|
|||
|
{
|
|||
|
dataGridView.Rows.Add(new object[] { dish.Key, dish.Value.Item1.DishName, dish.Value.Item2 });
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
_logger.LogError(ex, "Shop ice creams loading error");
|
|||
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
private void ButtonSave_Click(object sender, EventArgs e)
|
|||
|
{
|
|||
|
if (string.IsNullOrEmpty(textBoxName.Text))
|
|||
|
{
|
|||
|
MessageBox.Show("Заполните название", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|||
|
return;
|
|||
|
}
|
|||
|
if (string.IsNullOrEmpty(textBoxAddress.Text))
|
|||
|
{
|
|||
|
MessageBox.Show("Заполните адрес", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|||
|
return;
|
|||
|
}
|
|||
|
if (string.IsNullOrEmpty(dateTimePicker.Text))
|
|||
|
{
|
|||
|
MessageBox.Show("Заполните дату", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|||
|
return;
|
|||
|
}
|
|||
|
_logger.LogInformation("Shop saving");
|
|||
|
try
|
|||
|
{
|
|||
|
var model = new ShopBindingModel
|
|||
|
{
|
|||
|
Id = _id ?? 0,
|
|||
|
ShopName = textBoxName.Text,
|
|||
|
Address = textBoxAddress.Text,
|
|||
|
DateOpening = dateTimePicker.Value,
|
|||
|
ShopDishs = _shopDishs
|
|||
|
};
|
|||
|
var operationResult = _id.HasValue ? _logic.Update(model) : _logic.Create(model);
|
|||
|
if (!operationResult)
|
|||
|
{
|
|||
|
throw new Exception("Ошибка при сохранении. Дополнительная информация в логах.");
|
|||
|
}
|
|||
|
MessageBox.Show("Сохранение прошло успешно", "Сообщение", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|||
|
DialogResult = DialogResult.OK;
|
|||
|
Close();
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
_logger.LogError(ex, "Shop saving error");
|
|||
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
private void ButtonCancel_Click(object sender, EventArgs e)
|
|||
|
{
|
|||
|
DialogResult = DialogResult.Cancel;
|
|||
|
Close();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|