209 lines
8.1 KiB
C#
209 lines
8.1 KiB
C#
|
using FoodOrdersContracts.BindingModels;
|
|||
|
using FoodOrdersContracts.BusinessLogicsContracts;
|
|||
|
using FoodOrdersContracts.SearchModels;
|
|||
|
using FoodOrdersDataModels.Models;
|
|||
|
using Microsoft.Extensions.Logging;
|
|||
|
|
|||
|
namespace FoodOrdersView
|
|||
|
{
|
|||
|
public partial class FormDish : Form
|
|||
|
{
|
|||
|
private readonly ILogger _logger;
|
|||
|
|
|||
|
private readonly IDishLogic _logic;
|
|||
|
|
|||
|
private int? _id;
|
|||
|
|
|||
|
private Dictionary<int, (IComponentModel, int)> _FoodComponents;
|
|||
|
|
|||
|
public int Id { set { _id = value; } }
|
|||
|
|
|||
|
public FormDish(ILogger<FormDish> logger, IDishLogic logic)
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
_logger = logger;
|
|||
|
_logic = logic;
|
|||
|
_FoodComponents = new Dictionary<int, (IComponentModel, int)>();
|
|||
|
}
|
|||
|
|
|||
|
private void FormFood_Load(object sender, EventArgs e)
|
|||
|
{
|
|||
|
if (_id.HasValue)
|
|||
|
{
|
|||
|
_logger.LogInformation("Загрузка блюда");
|
|||
|
try
|
|||
|
{
|
|||
|
var view = _logic.ReadElement(new DishSearchModel { Id = _id.Value });
|
|||
|
if (view != null)
|
|||
|
{
|
|||
|
textBoxName.Text = view.DishName;
|
|||
|
textBoxPrice.Text = view.Price.ToString();
|
|||
|
_FoodComponents = view.DishComponents ?? new Dictionary<int, (IComponentModel, int)>();
|
|||
|
LoadData();
|
|||
|
}
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
_logger.LogError(ex, "Ошибка загрузки блюда");
|
|||
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
private void LoadData()
|
|||
|
{
|
|||
|
_logger.LogInformation("Загрузка компонент блюда");
|
|||
|
try
|
|||
|
{
|
|||
|
if (_FoodComponents != null)
|
|||
|
{
|
|||
|
dataGridView.Rows.Clear();
|
|||
|
foreach (var FoodC in _FoodComponents)
|
|||
|
{
|
|||
|
dataGridView.Rows.Add(new object[] { FoodC.Key, FoodC.Value.Item1.ComponentName, FoodC.Value.Item2 });
|
|||
|
}
|
|||
|
textBoxPrice.Text = CalcPrice().ToString();
|
|||
|
}
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
_logger.LogError(ex, "Ошибка загрузки компонент блюда");
|
|||
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
private void ButtonAdd_Click(object sender, EventArgs e)
|
|||
|
{
|
|||
|
var service = Program.ServiceProvider?.GetService(typeof(FormDishComponent));
|
|||
|
if (service is FormDishComponent form)
|
|||
|
{
|
|||
|
if (form.ShowDialog() == DialogResult.OK)
|
|||
|
{
|
|||
|
if (form.ComponentModel == null)
|
|||
|
{
|
|||
|
return;
|
|||
|
}
|
|||
|
_logger.LogInformation("Добавление нового компонента: {ComponentName} - {Count}", form.ComponentModel.ComponentName, form.Count);
|
|||
|
if (_FoodComponents.ContainsKey(form.Id))
|
|||
|
{
|
|||
|
_FoodComponents[form.Id] = (form.ComponentModel, form.Count);
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
_FoodComponents.Add(form.Id, (form.ComponentModel, form.Count));
|
|||
|
}
|
|||
|
LoadData();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
private void ButtonEdit_Click(object sender, EventArgs e)
|
|||
|
{
|
|||
|
if (dataGridView.SelectedRows.Count == 1)
|
|||
|
{
|
|||
|
var service = Program.ServiceProvider?.GetService(typeof(FormDishComponent));
|
|||
|
if (service is FormDishComponent form)
|
|||
|
{
|
|||
|
int id = Convert.ToInt32(dataGridView.SelectedRows[0].Cells[0].Value);
|
|||
|
form.Id = id;
|
|||
|
form.Count = _FoodComponents[id].Item2;
|
|||
|
if (form.ShowDialog() == DialogResult.OK)
|
|||
|
{
|
|||
|
if (form.ComponentModel == null)
|
|||
|
{
|
|||
|
return;
|
|||
|
}
|
|||
|
_logger.LogInformation("Изменение компонента: {ComponentName} - {Count}", form.ComponentModel.ComponentName, form.Count);
|
|||
|
_FoodComponents[form.Id] = (form.ComponentModel, form.Count);
|
|||
|
LoadData();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
private void ButtonDel_Click(object sender, EventArgs e)
|
|||
|
{
|
|||
|
if (dataGridView.SelectedRows.Count == 1)
|
|||
|
{
|
|||
|
if (MessageBox.Show("Удалить запись?", "Вопрос", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
_logger.LogInformation("Удаление компонента: {ComponentName} - {Count}", dataGridView.SelectedRows[0].Cells[1].Value,
|
|||
|
dataGridView.SelectedRows[0].Cells[2].Value);
|
|||
|
_FoodComponents?.Remove(Convert.ToInt32(dataGridView.SelectedRows[0].Cells[0].Value));
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|||
|
}
|
|||
|
LoadData();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
private void ButtonUpd_Click(object sender, EventArgs e)
|
|||
|
{
|
|||
|
LoadData();
|
|||
|
}
|
|||
|
|
|||
|
private void ButtonSave_Click(object sender, EventArgs e)
|
|||
|
{
|
|||
|
if (string.IsNullOrEmpty(textBoxName.Text))
|
|||
|
{
|
|||
|
MessageBox.Show("Заполните название", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|||
|
return;
|
|||
|
}
|
|||
|
if (string.IsNullOrEmpty(textBoxPrice.Text))
|
|||
|
{
|
|||
|
MessageBox.Show("Заполните цену", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|||
|
return;
|
|||
|
}
|
|||
|
if (_FoodComponents == null || _FoodComponents.Count == 0)
|
|||
|
{
|
|||
|
MessageBox.Show("Заполните компоненты", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|||
|
return;
|
|||
|
}
|
|||
|
_logger.LogInformation("Сохранение блюда");
|
|||
|
try
|
|||
|
{
|
|||
|
var model = new DishBindingModel
|
|||
|
{
|
|||
|
Id = _id ?? 0,
|
|||
|
DishName = textBoxName.Text,
|
|||
|
Price = Convert.ToDouble(textBoxPrice.Text),
|
|||
|
DishComponents = _FoodComponents
|
|||
|
};
|
|||
|
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, "Ошибка сохранения блюда");
|
|||
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
private void ButtonCancel_Click(object sender, EventArgs e)
|
|||
|
{
|
|||
|
DialogResult = DialogResult.Cancel;
|
|||
|
Close();
|
|||
|
}
|
|||
|
|
|||
|
private double CalcPrice()
|
|||
|
{
|
|||
|
double price = 0;
|
|||
|
foreach (var elem in _FoodComponents)
|
|||
|
{
|
|||
|
price += ((elem.Value.Item1?.Cost ?? 0) * elem.Value.Item2);
|
|||
|
}
|
|||
|
return Math.Round(price * 1.1, 2);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|