207 lines
8.2 KiB
C#
207 lines
8.2 KiB
C#
using Microsoft.Extensions.Logging;
|
||
using SYBDContracts.BindingModels;
|
||
using SYBDContracts.BusinessLogicsContracts;
|
||
|
||
namespace SYBDView
|
||
{
|
||
public partial class FormMain : Form
|
||
{
|
||
private readonly ILogger _logger;
|
||
|
||
private readonly IOrderLogic _orderLogic;
|
||
|
||
public FormMain(ILogger<FormMain> logger, IOrderLogic orderLogic)
|
||
{
|
||
InitializeComponent();
|
||
_logger = logger;
|
||
_orderLogic = orderLogic;
|
||
|
||
}
|
||
|
||
private void FormMain_Load(object sender, EventArgs e)
|
||
{
|
||
LoadData();
|
||
}
|
||
|
||
private void LoadData()
|
||
{
|
||
try
|
||
{
|
||
var list = _orderLogic.ReadList(null);
|
||
if (list != null)
|
||
{
|
||
dataGridView.DataSource = list;
|
||
dataGridView.Columns["Id"].Visible = false;
|
||
dataGridView.Columns["WorkerId"].Visible = false;
|
||
dataGridView.Columns["ClientId"].Visible = false;
|
||
dataGridView.Columns["AutoId"].Visible = false;
|
||
dataGridView.Columns["InsuranceId"].Visible = false;
|
||
}
|
||
_logger.LogInformation("Загрузка заказов");
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
_logger.LogError(ex, "Ошибка загрузки заказов");
|
||
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||
}
|
||
}
|
||
private void ButtonTakeOrderInWork_Click(object sender, EventArgs e)
|
||
{
|
||
if (dataGridView.SelectedRows.Count == 1)
|
||
{
|
||
int id = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value);
|
||
_logger.LogInformation("Заказ №{id}. Меняется статус на 'В работе'", id);
|
||
try
|
||
{
|
||
var operationResult = _orderLogic.TakeOrderInWork(new OrderBindingModel { Id = id });
|
||
if (!operationResult)
|
||
{
|
||
throw new Exception("Ошибка при сохранении. Дополнительная информация в логах.");
|
||
}
|
||
LoadData();
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
_logger.LogError(ex, "Ошибка передачи заказа в работу");
|
||
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||
}
|
||
}
|
||
}
|
||
|
||
private void ButtonOrderReady_Click(object sender, EventArgs e)
|
||
{
|
||
if (dataGridView.SelectedRows.Count == 1)
|
||
{
|
||
int id = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value);
|
||
_logger.LogInformation("Заказ №{id}. Меняется статус на 'Готов'", id);
|
||
try
|
||
{
|
||
var operationResult = _orderLogic.FinishOrder(new OrderBindingModel { Id = id });
|
||
if (!operationResult)
|
||
{
|
||
throw new Exception("Ошибка при сохранении. Дополнительная информация в логах.");
|
||
}
|
||
LoadData();
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
_logger.LogError(ex, "Ошибка отметки о готовности заказа");
|
||
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||
}
|
||
}
|
||
}
|
||
|
||
private void ButtonIssuedOrder_Click(object sender, EventArgs e)
|
||
{
|
||
if (dataGridView.SelectedRows.Count == 1)
|
||
{
|
||
int id = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value);
|
||
_logger.LogInformation("Заказ №{id}. Меняется статус на 'Выдан'", id);
|
||
try
|
||
{
|
||
var operationResult = _orderLogic.DeliveryOrder(new OrderBindingModel { Id = id });
|
||
if (!operationResult)
|
||
{
|
||
throw new Exception("Ошибка при сохранении. Дополнительная информация в логах.");
|
||
}
|
||
_logger.LogInformation("Заказ №{id} выдан", id);
|
||
LoadData();
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
_logger.LogError(ex, "Ошибка отметки о выдачи заказа");
|
||
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||
}
|
||
}
|
||
}
|
||
private void АвтомобилиToolStripMenuItem_Click(object sender, EventArgs e)
|
||
{
|
||
var service = Program.ServiceProvider?.GetService(typeof(FormAutos));
|
||
if (service is FormAutos form)
|
||
{
|
||
form.ShowDialog();
|
||
}
|
||
}
|
||
|
||
private void РаботникиToolStripMenuItem_Click(object sender, EventArgs e)
|
||
{
|
||
var service = Program.ServiceProvider?.GetService(typeof(FormWorkers));
|
||
if (service is FormWorkers form)
|
||
{
|
||
form.ShowDialog();
|
||
}
|
||
}
|
||
private void СтраховыеToolStripMenuItem_Click(object sender, EventArgs e)
|
||
{
|
||
var service = Program.ServiceProvider?.GetService(typeof(FormInsurances));
|
||
if (service is FormInsurances form)
|
||
{
|
||
form.ShowDialog();
|
||
}
|
||
}
|
||
private void ButtonCreateOrder_Click(object sender, EventArgs e)
|
||
{
|
||
var service = Program.ServiceProvider?.GetService(typeof(FormCreateOrder));
|
||
if (service is FormCreateOrder form)
|
||
{
|
||
form.ShowDialog();
|
||
LoadData();
|
||
}
|
||
}
|
||
private void ButtonUpd_Click(object sender, EventArgs e)
|
||
{
|
||
if (dataGridView.SelectedRows.Count == 1)
|
||
{
|
||
var service = Program.ServiceProvider?.GetService(typeof(FormCreateOrder));
|
||
if (service is FormCreateOrder form)
|
||
{
|
||
form.Id = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value);
|
||
if (form.ShowDialog() == DialogResult.OK)
|
||
{
|
||
LoadData();
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
private void ButtonDel_Click(object sender, EventArgs e)
|
||
{
|
||
if (dataGridView.SelectedRows.Count == 1)
|
||
{
|
||
if (MessageBox.Show("Удалить запись?", "Вопрос", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
|
||
{
|
||
int id = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value);
|
||
_logger.LogInformation("Удаление компонента");
|
||
try
|
||
{
|
||
if (!_orderLogic.Delete(new OrderBindingModel { Id = id }))
|
||
{
|
||
throw new Exception("Ошибка при удалении. Дополнительная информация в логах.");
|
||
}
|
||
LoadData();
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
_logger.LogError(ex, "Ошибка удаления компонента");
|
||
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
private void ButtonRef_Click(object sender, EventArgs e)
|
||
{
|
||
LoadData();
|
||
}
|
||
|
||
|
||
private void клиентыToolStripMenuItem_Click(object sender, EventArgs e)
|
||
{
|
||
var service = Program.ServiceProvider?.GetService(typeof(FormClients));
|
||
if (service is FormClients form)
|
||
{
|
||
form.ShowDialog();
|
||
}
|
||
}
|
||
}
|
||
} |