243 lines
8.8 KiB
C#
243 lines
8.8 KiB
C#
|
using FlowerShopDataModels.Models;
|
|||
|
using Microsoft.Extensions.Logging;
|
|||
|
using FlowerShopContracts.BusinessLogicsContracts;
|
|||
|
using FlowerShopContracts.SearchModels;
|
|||
|
using FlowerShopContracts.BindingModels;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Data;
|
|||
|
using System.Drawing;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using System.Windows.Forms;
|
|||
|
|
|||
|
namespace ProjectFlowerShop
|
|||
|
{
|
|||
|
public partial class FormProduct : Form
|
|||
|
{
|
|||
|
private readonly ILogger _logger;
|
|||
|
private readonly IFlowerLogic _logic;
|
|||
|
private int? _id;
|
|||
|
private Dictionary<int, (IComponentModel, int)> _flowerComponents;
|
|||
|
public int Id { set { _id = value; } }
|
|||
|
|
|||
|
public FormProduct(ILogger<FormProduct> logger, IFlowerLogic logic)
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
_logger = logger;
|
|||
|
_logic = logic;
|
|||
|
_flowerComponents = new Dictionary<int, (IComponentModel, int)>();
|
|||
|
}
|
|||
|
|
|||
|
private void textBox1_TextChanged(object sender, EventArgs e)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
private void FormProduct_Load(object sender, EventArgs e)
|
|||
|
{
|
|||
|
if (_id.HasValue)
|
|||
|
{
|
|||
|
_logger.LogInformation("Загрузка изделия");
|
|||
|
try
|
|||
|
{
|
|||
|
var view = _logic.ReadElement(new FlowerSearchModel
|
|||
|
{
|
|||
|
Id = _id.Value
|
|||
|
});
|
|||
|
if (view != null)
|
|||
|
{
|
|||
|
textBoxName.Text = view.FlowerName;
|
|||
|
textBoxPrice.Text = view.Price.ToString();
|
|||
|
_flowerComponents = view.FlowerComponents ?? 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 (_flowerComponents != null)
|
|||
|
{
|
|||
|
dataGridView.Rows.Clear();
|
|||
|
foreach (var pc in _flowerComponents)
|
|||
|
{
|
|||
|
dataGridView.Rows.Add(new object[] { pc.Key, pc.Value.Item1.ComponentName, pc.Value.Item2 });
|
|||
|
}
|
|||
|
textBoxPrice.Text = CalcPrice().ToString();
|
|||
|
}
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
_logger.LogError(ex, "Ошибка загрузки компонент изделия");
|
|||
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK,
|
|||
|
MessageBoxIcon.Error);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
private void dataGridView_CellContentClick(object sender, DataGridViewCellEventArgs e)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
private void buttonAdd_Click(object sender, EventArgs e)
|
|||
|
{
|
|||
|
var service = Program.ServiceProvider?.GetService(typeof(FormProductComponent));
|
|||
|
if (service is FormProductComponent form)
|
|||
|
{
|
|||
|
if (form.ShowDialog() == DialogResult.OK)
|
|||
|
{
|
|||
|
if (form.ComponentModel == null)
|
|||
|
{
|
|||
|
return;
|
|||
|
}
|
|||
|
_logger.LogInformation("Добавление нового компонента:{ ComponentName}- { Count} ", form.ComponentModel.ComponentName, form.Count);
|
|||
|
if (_flowerComponents.ContainsKey(form.Id))
|
|||
|
{
|
|||
|
_flowerComponents[form.Id] = (form.ComponentModel, form.Count);
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
_flowerComponents.Add(form.Id, (form.ComponentModel, form.Count));
|
|||
|
}
|
|||
|
LoadData();
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
private void buttonChange_Click(object sender, EventArgs e)
|
|||
|
{
|
|||
|
if (dataGridView.SelectedRows.Count == 1)
|
|||
|
{
|
|||
|
var service =
|
|||
|
Program.ServiceProvider?.GetService(typeof(FormProductComponent));
|
|||
|
if (service is FormProductComponent form)
|
|||
|
{
|
|||
|
int id =
|
|||
|
Convert.ToInt32(dataGridView.SelectedRows[0].Cells[0].Value);
|
|||
|
form.Id = id;
|
|||
|
form.Count = _flowerComponents[id].Item2;
|
|||
|
if (form.ShowDialog() == DialogResult.OK)
|
|||
|
{
|
|||
|
if (form.ComponentModel == null)
|
|||
|
{
|
|||
|
return;
|
|||
|
}
|
|||
|
_logger.LogInformation("Изменение компонента:{ ComponentName}- { Count}", form.ComponentModel.ComponentName, form.Count);
|
|||
|
_flowerComponents[form.Id] = (form.ComponentModel, form.Count);
|
|||
|
LoadData();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
private void buttonRemove_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);
|
|||
|
_flowerComponents?.Remove(Convert.ToInt32(dataGridView.SelectedRows[0].Cells[0].Value));
|
|||
|
}
|
|||
|
catch (Exception ex)
|
|||
|
{
|
|||
|
MessageBox.Show(ex.Message, "Ошибка",
|
|||
|
MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|||
|
}
|
|||
|
LoadData();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
private void buttonRefresh_Click(object sender, EventArgs e)
|
|||
|
{
|
|||
|
LoadData();
|
|||
|
}
|
|||
|
|
|||
|
private void Save_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 (_flowerComponents == null || _flowerComponents.Count == 0)
|
|||
|
{
|
|||
|
MessageBox.Show("Заполните компоненты", "Ошибка",
|
|||
|
MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|||
|
return;
|
|||
|
}
|
|||
|
_logger.LogInformation("Сохранение изделия");
|
|||
|
try
|
|||
|
{
|
|||
|
var model = new FlowerBindingModel
|
|||
|
{
|
|||
|
Id = _id ?? 0,
|
|||
|
FlowerName = textBoxName.Text,
|
|||
|
Price = Convert.ToDouble(textBoxPrice.Text),
|
|||
|
FlowerComponents = _flowerComponents
|
|||
|
};
|
|||
|
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 _flowerComponents)
|
|||
|
{
|
|||
|
price += ((elem.Value.Item1?.Cost ?? 0) * elem.Value.Item2);
|
|||
|
}
|
|||
|
return Math.Round(price * 1.1, 2);
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|