116 lines
4.5 KiB
C#
116 lines
4.5 KiB
C#
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
using RenovationWorkContracts.BindingModels;
|
|
using RenovationWorkContracts.BusinessLogicsContracts;
|
|
using RenovationWorkContracts.SearchModels;
|
|
using Microsoft.Extensions.Logging;
|
|
using RenovationWorkListImplement.Models;
|
|
|
|
namespace RenovationWorkView
|
|
{
|
|
public partial class FormCreateOrder : Form
|
|
{
|
|
private readonly ILogger _logger;
|
|
private readonly IRepairLogic _logicC;
|
|
private readonly IOrderLogic _logicO;
|
|
public FormCreateOrder(ILogger<FormCreateOrder> logger, IRepairLogic logicC, IOrderLogic logicO)
|
|
{
|
|
InitializeComponent();
|
|
_logger = logger;
|
|
_logicC = logicC;
|
|
_logicO = logicO;
|
|
}
|
|
|
|
private void FormCreateOrder_Load(object sender, EventArgs e)
|
|
{
|
|
_logger.LogInformation("Загрузка изделий для заказа");
|
|
var list = _logicC.ReadList(null);
|
|
if (list != null)
|
|
{
|
|
comboBoxRepair.DisplayMember = "RepairName";
|
|
comboBoxRepair.ValueMember = "Id";
|
|
comboBoxRepair.DataSource = list;
|
|
comboBoxRepair.SelectedItem = null;
|
|
}
|
|
}
|
|
private void CalcSum()
|
|
{
|
|
if (comboBoxRepair.SelectedValue != null && !string.IsNullOrEmpty(textBoxCount.Text))
|
|
{
|
|
try
|
|
{
|
|
int id = Convert.ToInt32(comboBoxRepair.SelectedValue);
|
|
var repair = _logicC.ReadElement(new RepairSearchModel { Id = id });
|
|
int count = Convert.ToInt32(textBoxCount.Text);
|
|
textBoxSum.Text = Math.Round(count * (repair?.Price ?? 0), 2).ToString();
|
|
_logger.LogInformation("Расчет суммы заказа");
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Ошибка расчета суммы заказа");
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
}
|
|
}
|
|
}
|
|
|
|
private void comboBoxRepair_SelectedIndexChanged(object sender, EventArgs e)
|
|
{
|
|
CalcSum();
|
|
}
|
|
|
|
private void textBoxCount_TextChanged(object sender, EventArgs e)
|
|
{
|
|
CalcSum();
|
|
}
|
|
|
|
private void buttonSave_Click(object sender, EventArgs e)
|
|
{
|
|
if (string.IsNullOrEmpty(textBoxCount.Text))
|
|
{
|
|
MessageBox.Show("Заполните поле Количество", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
return;
|
|
}
|
|
if (comboBoxRepair.SelectedValue == null)
|
|
{
|
|
MessageBox.Show("Выберите изделие", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
return;
|
|
}
|
|
_logger.LogInformation("Создание заказа");
|
|
try
|
|
{
|
|
int id = Convert.ToInt32(comboBoxRepair.SelectedValue);
|
|
int counr = Convert.ToInt32(textBoxCount.Text);
|
|
double sum = Convert.ToDouble(textBoxSum.Text);
|
|
var operationResult = _logicO.CreateOrder(new OrderBindingModel
|
|
{
|
|
RepairId = Convert.ToInt32(comboBoxRepair.SelectedValue),
|
|
Count = Convert.ToInt32(textBoxCount.Text),
|
|
Sum = Convert.ToDouble(textBoxSum.Text)
|
|
});
|
|
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();
|
|
}
|
|
}
|
|
}
|