178 lines
7.0 KiB
C#
178 lines
7.0 KiB
C#
using Microsoft.Extensions.Logging;
|
||
using SushiBar;
|
||
using SushiBarContracts.BindingModel;
|
||
using SushiBarContracts.BusinessLogicsContracts;
|
||
using SushiBarView.Reports;
|
||
|
||
namespace SushiBarView
|
||
{
|
||
public partial class FormMain : Form
|
||
{
|
||
private readonly ILogger _logger;
|
||
private readonly IOrderLogic _orderLogic;
|
||
private readonly IReportLogic _reportLogic;
|
||
public FormMain(ILogger<FormMain> logger, IOrderLogic orderLogic, IReportLogic reportLogic)
|
||
{
|
||
InitializeComponent();
|
||
_logger = logger;
|
||
_orderLogic = orderLogic;
|
||
_reportLogic = reportLogic;
|
||
}
|
||
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["SushiId"].Visible = false;
|
||
dataGridView.Columns["SushiName"].AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
|
||
}
|
||
_logger.LogInformation("Загрузка заказов");
|
||
}
|
||
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(FormComponents));
|
||
if (service is FormComponents form)
|
||
{
|
||
form.ShowDialog();
|
||
}
|
||
}
|
||
|
||
private void сушиToolStripMenuItem_Click(object sender, EventArgs e)
|
||
{
|
||
var service = Program.ServiceProvider?.GetService(typeof(FormSushis));
|
||
if (service is FormSushis formSushis) { formSushis.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 buttonTakeOrderInWork_Click_1(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_1(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 buttonOrderIssued_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 ButtonRef_Click(object sender, EventArgs e)
|
||
{
|
||
LoadData();
|
||
}
|
||
|
||
private void списокКомпонентовToolStripMenuItem_Click(object sender, EventArgs e)
|
||
{
|
||
using var dialog = new SaveFileDialog { Filter = "docx|*.docx" };
|
||
if (dialog.ShowDialog() == DialogResult.OK)
|
||
{
|
||
_reportLogic.SaveComponentsToWordFile(new ReportBindingModel
|
||
{
|
||
FileName = dialog.FileName
|
||
});
|
||
MessageBox.Show("Выполнено", "Успех", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||
}
|
||
}
|
||
|
||
private void компонентыПоИзделиямToolStripMenuItem_Click(object sender, EventArgs e)
|
||
{
|
||
var service = Program.ServiceProvider?.GetService(typeof(FormReportSushiComponent));
|
||
if (service is FormReportSushiComponent form)
|
||
{
|
||
form.ShowDialog();
|
||
}
|
||
}
|
||
|
||
private void списокЗаказовToolStripMenuItem_Click(object sender, EventArgs e)
|
||
{
|
||
var service = Program.ServiceProvider?.GetService(typeof(FormReportOrders));
|
||
if (service is FormReportOrders form)
|
||
{
|
||
form.ShowDialog();
|
||
}
|
||
}
|
||
}
|
||
}
|