2023-03-14 15:20:02 +04:00
|
|
|
|
using SofrwareInstallationContracts.BindingModels;
|
|
|
|
|
using SofrwareInstallationContracts.BusinessLogicsContracts;
|
|
|
|
|
using SofrwareInstallationContracts.SearchModels;
|
|
|
|
|
using SoftwareInstallationDataModels.Models;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
2023-05-24 14:11:43 +04:00
|
|
|
|
using SofrwareInstallationContracts.DI;
|
|
|
|
|
using System.Windows.Forms;
|
2023-03-14 15:20:02 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace SoftwareInstallationView
|
|
|
|
|
{
|
|
|
|
|
public partial class FormPackage : Form
|
|
|
|
|
{
|
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
|
|
|
|
|
private readonly IPackageLogic _logic;
|
|
|
|
|
|
|
|
|
|
private int? _id;
|
|
|
|
|
|
|
|
|
|
private Dictionary<int, (IComponentModel, int)> _packageComponents;
|
|
|
|
|
|
|
|
|
|
public int Id { set { _id = value; } }
|
|
|
|
|
public FormPackage(ILogger<FormPackage> logger, IPackageLogic logic)
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
_logger = logger;
|
|
|
|
|
_logic = logic;
|
|
|
|
|
_packageComponents = new Dictionary<int, (IComponentModel, int)>();
|
|
|
|
|
}
|
|
|
|
|
private void FormPackage_Load(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (_id.HasValue)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogInformation("Загрузка изделия");
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var view = _logic.ReadElement(new PackageSearchModel
|
|
|
|
|
{
|
|
|
|
|
Id = _id.Value
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (view != null)
|
|
|
|
|
{
|
|
|
|
|
PackageNameTextBox.Text = view.PackageName;
|
|
|
|
|
PriceTextBox.Text = view.Price.ToString();
|
|
|
|
|
_packageComponents = view.PackageComponents ?? 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 (_packageComponents != null)
|
|
|
|
|
{
|
|
|
|
|
DataGridView.Rows.Clear();
|
|
|
|
|
foreach (var pc in _packageComponents)
|
|
|
|
|
{
|
|
|
|
|
DataGridView.Rows.Add(new object[] { pc.Key, pc.Value.Item1.ComponentName, pc.Value.Item2 });
|
|
|
|
|
}
|
|
|
|
|
PriceTextBox.Text = CalcPrice().ToString();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Ошибка загрузки компонент изделия");
|
|
|
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
private void AddButton_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2023-05-24 14:11:43 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormPackageComponent>();
|
2023-03-14 15:20:02 +04:00
|
|
|
|
|
2023-05-24 14:11:43 +04:00
|
|
|
|
if (form.ShowDialog() == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
if (form.ComponentModel == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
2023-03-14 15:20:02 +04:00
|
|
|
|
}
|
2023-05-24 14:11:43 +04:00
|
|
|
|
_logger.LogInformation("Добавление нового компонента: { ComponentName}- { Count}", form.ComponentModel.ComponentName, form.Count);
|
|
|
|
|
|
|
|
|
|
if (_packageComponents.ContainsKey(form.Id))
|
|
|
|
|
{
|
|
|
|
|
_packageComponents[form.Id] = (form.ComponentModel, form.Count);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
_packageComponents.Add(form.Id, (form.ComponentModel, form.Count));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
2023-03-14 15:20:02 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ChangeButton_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (DataGridView.SelectedRows.Count == 1)
|
|
|
|
|
{
|
2023-05-24 14:11:43 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormPackageComponent>();
|
|
|
|
|
int id = Convert.ToInt32(DataGridView.SelectedRows[0].Cells[0].Value);
|
2023-03-14 15:20:02 +04:00
|
|
|
|
|
2023-05-24 14:11:43 +04:00
|
|
|
|
form.Id = id;
|
|
|
|
|
form.Count = _packageComponents[id].Item2;
|
2023-03-14 15:20:02 +04:00
|
|
|
|
|
2023-05-24 14:11:43 +04:00
|
|
|
|
if (form.ShowDialog() == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
if (form.ComponentModel == null)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
2023-03-14 15:20:02 +04:00
|
|
|
|
|
2023-05-24 14:11:43 +04:00
|
|
|
|
_logger.LogInformation("Изменение компонента: { ComponentName} - { Count} ", form.ComponentModel.ComponentName, form.Count);
|
|
|
|
|
_packageComponents[id] = (form.ComponentModel, form.Count);
|
|
|
|
|
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-03-14 15:20:02 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void DeleteButton_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);
|
|
|
|
|
_packageComponents?.Remove(Convert.ToInt32(DataGridView.SelectedRows[0].Cells[0].Value));
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void UpdateButton_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void SaveButton_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrEmpty(PackageNameTextBox.Text))
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show("Заполните название", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(PriceTextBox.Text))
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show("Заполните цену", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (_packageComponents == null || _packageComponents.Count == 0)
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show("Заполните компоненты", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_logger.LogInformation("Сохранение изделия");
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var model = new PackageBindingModel
|
|
|
|
|
{
|
|
|
|
|
Id = _id ?? 0,
|
|
|
|
|
PackageName = PackageNameTextBox.Text,
|
|
|
|
|
Price = Convert.ToDouble(PriceTextBox.Text),
|
|
|
|
|
PackageComponents = _packageComponents
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
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 _packageComponents)
|
|
|
|
|
{
|
|
|
|
|
price += ((elem.Value.Item1?.Cost ?? 0) * elem.Value.Item2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Math.Round(price * 1.1, 2);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|