2024-02-01 10:43:41 +04:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using Pizzeria;
|
2024-03-28 21:32:49 +04:00
|
|
|
|
using PizzeriaBusinessLogic.BusinessLogics;
|
2024-02-01 10:43:41 +04:00
|
|
|
|
using PizzeriaContracts.BindingModels;
|
|
|
|
|
using PizzeriaContracts.BusinessLogicsContracts;
|
2024-04-03 17:52:29 +04:00
|
|
|
|
using PizzeriaContracts.DI;
|
|
|
|
|
using System.Windows.Forms;
|
2024-02-01 10:43:41 +04:00
|
|
|
|
|
|
|
|
|
namespace PizzeriaView
|
|
|
|
|
{
|
|
|
|
|
public partial class FormMain : Form
|
|
|
|
|
{
|
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
private readonly IOrderLogic _orderLogic;
|
2024-03-15 00:47:16 +04:00
|
|
|
|
private readonly IReportLogic _reportLogic;
|
2024-03-28 21:32:49 +04:00
|
|
|
|
private readonly IWorkProcess _workProcess;
|
2024-04-03 17:52:29 +04:00
|
|
|
|
private readonly IBackUpLogic _backUpLogic;
|
2024-02-01 10:43:41 +04:00
|
|
|
|
|
2024-04-03 17:52:29 +04:00
|
|
|
|
public FormMain(ILogger<FormMain> logger, IOrderLogic orderLogic, IReportLogic reportLogic, IWorkProcess workProcess, IBackUpLogic backUpLogic)
|
2024-02-01 10:43:41 +04:00
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
_logger = logger;
|
|
|
|
|
_orderLogic = orderLogic;
|
2024-03-15 00:47:16 +04:00
|
|
|
|
_reportLogic = reportLogic;
|
2024-03-28 21:32:49 +04:00
|
|
|
|
_workProcess = workProcess;
|
2024-04-03 17:52:29 +04:00
|
|
|
|
_backUpLogic = backUpLogic;
|
2024-02-01 10:43:41 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void FormMain_Load(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void LoadData()
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2024-04-03 17:52:29 +04:00
|
|
|
|
dataGridView.FillAndConfigGrid(_orderLogic.ReadList(null));
|
2024-02-01 10:43:41 +04:00
|
|
|
|
_logger.LogInformation("Загрузка заказов");
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Ошибка загрузки заказов");
|
|
|
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void IngridentsToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-04-03 17:52:29 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormComponents>();
|
|
|
|
|
form.ShowDialog();
|
2024-02-01 10:43:41 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void PizzasToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-04-03 17:52:29 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormPizzas>();
|
|
|
|
|
form.ShowDialog();
|
2024-02-01 10:43:41 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ButtonCreateOrder_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-04-03 17:52:29 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormCreateOrder>();
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
LoadData();
|
2024-02-01 10:43:41 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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("Заказ No{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("Заказ No{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("Заказ No{id}. Меняется статус на 'Выдан'", id);
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var operationResult = _orderLogic.DeliveryOrder(new OrderBindingModel
|
|
|
|
|
{
|
|
|
|
|
Id = id
|
|
|
|
|
});
|
|
|
|
|
if (!operationResult)
|
|
|
|
|
{
|
|
|
|
|
throw new Exception("Ошибка при сохранении. Дополнительная информация в логах.");
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("Заказ No{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();
|
|
|
|
|
}
|
2024-03-15 00:47:16 +04:00
|
|
|
|
|
|
|
|
|
private void ComponentsToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
using var dialog = new SaveFileDialog { Filter = "docx|*.docx" };
|
|
|
|
|
if (dialog.ShowDialog() == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
_reportLogic.SavePizzasToWordFile(new ReportBindingModel { FileName = dialog.FileName });
|
|
|
|
|
MessageBox.Show("Выполнено", "Успех", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ComponentPizzaToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-04-03 17:52:29 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormReportPizzaComponents>();
|
|
|
|
|
form.ShowDialog();
|
2024-03-15 00:47:16 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void OrdersToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-04-03 17:52:29 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormReportOrders>();
|
|
|
|
|
form.ShowDialog();
|
2024-03-15 00:47:16 +04:00
|
|
|
|
}
|
2024-03-21 13:21:25 +04:00
|
|
|
|
|
|
|
|
|
private void ClientToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-04-03 17:52:29 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormClients>();
|
|
|
|
|
form.ShowDialog();
|
2024-03-21 13:21:25 +04:00
|
|
|
|
}
|
2024-03-28 21:32:49 +04:00
|
|
|
|
|
|
|
|
|
private void employersToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-04-03 17:52:29 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormImplementers>();
|
|
|
|
|
form.ShowDialog();
|
2024-03-28 21:32:49 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void startWorkToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-04-03 17:52:29 +04:00
|
|
|
|
_workProcess.DoWork(DependencyManager.Instance.Resolve<IImplementerLogic>(), _orderLogic);
|
2024-03-28 21:32:49 +04:00
|
|
|
|
MessageBox.Show("Процесс обработки запущен", "Сообщение", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
|
|
|
}
|
2024-04-02 16:35:18 +04:00
|
|
|
|
|
|
|
|
|
private void mailToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-04-03 17:52:29 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormMail>();
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void createBackUpToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
if (_backUpLogic != null)
|
|
|
|
|
{
|
|
|
|
|
var fbd = new FolderBrowserDialog();
|
|
|
|
|
if (fbd.ShowDialog() == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
_backUpLogic.CreateBackUp(new BackUpSaveBinidngModel
|
|
|
|
|
{
|
|
|
|
|
FolderName = fbd.SelectedPath
|
|
|
|
|
});
|
|
|
|
|
MessageBox.Show("Бекап создан", "Сообщение",
|
|
|
|
|
MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show(ex.Message, "Ошибка создания бэкапа", MessageBoxButtons.OK,
|
|
|
|
|
MessageBoxIcon.Error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-02-01 10:43:41 +04:00
|
|
|
|
}
|