209 lines
8.1 KiB
C#
209 lines
8.1 KiB
C#
using IceCreamShopContracts.BindingModels;
|
|
using IceCreamShopContracts.BusinessLogicsContracts;
|
|
using IceCreamShopContracts.SearchModels;
|
|
using IceCreamShopDataModels.Models;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace IceCreamShopView
|
|
{
|
|
public partial class FormIceCream : Form
|
|
{
|
|
private readonly ILogger _logger;
|
|
|
|
private readonly IIceCreamLogic _logic;
|
|
|
|
private int? _id;
|
|
|
|
private Dictionary<int, (IComponentModel, int)> _iceCreamComponents;
|
|
|
|
public int Id { set { _id = value; } }
|
|
|
|
public FormIceCream(ILogger<FormIceCream> logger, IIceCreamLogic logic)
|
|
{
|
|
InitializeComponent();
|
|
_logger = logger;
|
|
_logic = logic;
|
|
_iceCreamComponents = new Dictionary<int, (IComponentModel, int)>();
|
|
}
|
|
|
|
private void FormIceCream_Load(object sender, EventArgs e)
|
|
{
|
|
if (_id.HasValue)
|
|
{
|
|
_logger.LogInformation("Ice cream loading");
|
|
try
|
|
{
|
|
var view = _logic.ReadElement(new IceCreamSearchModel { Id = _id.Value });
|
|
if (view != null)
|
|
{
|
|
textBoxName.Text = view.IceCreamName;
|
|
textBoxPrice.Text = view.Price.ToString();
|
|
_iceCreamComponents = view.IceCreamComponents ?? new Dictionary<int, (IComponentModel, int)>();
|
|
LoadData();
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Ice cream loading error");
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
}
|
|
}
|
|
}
|
|
|
|
private void LoadData()
|
|
{
|
|
_logger.LogInformation("Ice cream components loading");
|
|
try
|
|
{
|
|
if (_iceCreamComponents != null)
|
|
{
|
|
dataGridView.Rows.Clear();
|
|
foreach (var iceCreamC in _iceCreamComponents)
|
|
{
|
|
dataGridView.Rows.Add(new object[] { iceCreamC.Key, iceCreamC.Value.Item1.ComponentName, iceCreamC.Value.Item2 });
|
|
}
|
|
textBoxPrice.Text = CalcPrice().ToString();
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Ice cream components loading error");
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
}
|
|
}
|
|
|
|
private void ButtonAdd_Click(object sender, EventArgs e)
|
|
{
|
|
var service = Program.ServiceProvider?.GetService(typeof(FormIceCreamComponent));
|
|
if (service is FormIceCreamComponent form)
|
|
{
|
|
if (form.ShowDialog() == DialogResult.OK)
|
|
{
|
|
if (form.ComponentModel == null)
|
|
{
|
|
return;
|
|
}
|
|
_logger.LogInformation("Adding new component: {ComponentName} - {Count}", form.ComponentModel.ComponentName, form.Count);
|
|
if (_iceCreamComponents.ContainsKey(form.Id))
|
|
{
|
|
_iceCreamComponents[form.Id] = (form.ComponentModel, form.Count);
|
|
}
|
|
else
|
|
{
|
|
_iceCreamComponents.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(FormIceCreamComponent));
|
|
if (service is FormIceCreamComponent form)
|
|
{
|
|
int id = Convert.ToInt32(dataGridView.SelectedRows[0].Cells[0].Value);
|
|
form.Id = id;
|
|
form.Count = _iceCreamComponents[id].Item2;
|
|
if (form.ShowDialog() == DialogResult.OK)
|
|
{
|
|
if (form.ComponentModel == null)
|
|
{
|
|
return;
|
|
}
|
|
_logger.LogInformation("Component editing: {ComponentName} - {Count}", form.ComponentModel.ComponentName, form.Count);
|
|
_iceCreamComponents[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("Deletion of component: {ComponentName} - {Count}", dataGridView.SelectedRows[0].Cells[1].Value,
|
|
dataGridView.SelectedRows[0].Cells[2].Value);
|
|
_iceCreamComponents?.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 (_iceCreamComponents == null || _iceCreamComponents.Count == 0)
|
|
{
|
|
MessageBox.Show("Заполните компоненты", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
return;
|
|
}
|
|
_logger.LogInformation("Ice cream saving");
|
|
try
|
|
{
|
|
var model = new IceCreamBindingModel
|
|
{
|
|
Id = _id ?? 0,
|
|
IceCreamName = textBoxName.Text,
|
|
Price = Convert.ToDouble(textBoxPrice.Text),
|
|
IceCreamComponents = _iceCreamComponents
|
|
};
|
|
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, "Ice cream saving error");
|
|
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 _iceCreamComponents)
|
|
{
|
|
price += ((elem.Value.Item1?.Cost ?? 0) * elem.Value.Item2);
|
|
}
|
|
return Math.Round(price * 1.1, 2);
|
|
}
|
|
}
|
|
} |