2024-02-25 19:52:48 +04:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using SushiBar;
|
2024-05-18 00:08:21 +04:00
|
|
|
|
using SushiBarBusinessLogic;
|
2024-02-25 19:52:48 +04:00
|
|
|
|
using SushiBarContracts.BindingModel;
|
|
|
|
|
using SushiBarContracts.BusinessLogicsContracts;
|
2024-05-18 21:39:23 +04:00
|
|
|
|
using SushiBarContracts.DI;
|
2024-05-17 19:51:39 +04:00
|
|
|
|
using SushiBarContracts.ViewModels;
|
2024-03-24 18:34:36 +04:00
|
|
|
|
using SushiBarView.Reports;
|
2024-02-25 19:52:48 +04:00
|
|
|
|
|
|
|
|
|
namespace SushiBarView
|
|
|
|
|
{
|
|
|
|
|
public partial class FormMain : Form
|
|
|
|
|
{
|
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
private readonly IOrderLogic _orderLogic;
|
2024-03-24 18:34:36 +04:00
|
|
|
|
private readonly IReportLogic _reportLogic;
|
2024-04-21 00:48:13 +04:00
|
|
|
|
private readonly IWorkProcess _workProcess;
|
2024-05-18 00:08:21 +04:00
|
|
|
|
private readonly IBackUpLogic _backUpLogic;
|
|
|
|
|
public FormMain(ILogger<FormMain> logger, IOrderLogic orderLogic,
|
|
|
|
|
IReportLogic reportLogic, IWorkProcess workProcess, IBackUpLogic backUpLogic)
|
2024-02-25 19:52:48 +04:00
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
_logger = logger;
|
|
|
|
|
_orderLogic = orderLogic;
|
2024-03-24 18:34:36 +04:00
|
|
|
|
_reportLogic = reportLogic;
|
2024-04-21 00:48:13 +04:00
|
|
|
|
_workProcess = workProcess;
|
2024-05-18 00:08:21 +04:00
|
|
|
|
_backUpLogic = backUpLogic;
|
2024-02-25 19:52:48 +04:00
|
|
|
|
}
|
|
|
|
|
private void FormMain_Load(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
2024-04-21 12:28:36 +04:00
|
|
|
|
private void FormMain_Resize(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
dataGridView.Width = this.Width - buttonCreateOrder.Width * 2;
|
|
|
|
|
}
|
2024-02-25 19:52:48 +04:00
|
|
|
|
private void LoadData()
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2024-05-17 19:51:39 +04:00
|
|
|
|
dataGridView.FillAndConfigGrid(_orderLogic.ReadList(null));
|
2024-02-25 19:52:48 +04:00
|
|
|
|
_logger.LogInformation("Загрузка заказов");
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Произошла ошибка при загрузке заказов");
|
|
|
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void компонентыToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-18 21:39:23 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormComponents>();
|
|
|
|
|
form.ShowDialog();
|
2024-02-25 19:52:48 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void сушиToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-18 21:39:23 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormSushis>();
|
|
|
|
|
form.ShowDialog();
|
2024-02-25 19:52:48 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void buttonCreateOrder_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-18 21:39:23 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormCreateOrder>();
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
LoadData();
|
2024-02-25 19:52:48 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-24 18:34:36 +04:00
|
|
|
|
private void списокКомпонентовToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
using var dialog = new SaveFileDialog { Filter = "docx|*.docx" };
|
|
|
|
|
if (dialog.ShowDialog() == DialogResult.OK)
|
|
|
|
|
{
|
2024-03-25 10:50:13 +04:00
|
|
|
|
_reportLogic.SaveSushisToWordFile(new ReportBindingModel
|
2024-03-24 18:34:36 +04:00
|
|
|
|
{
|
|
|
|
|
FileName = dialog.FileName
|
|
|
|
|
});
|
|
|
|
|
MessageBox.Show("Выполнено", "Успех", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void компонентыПоИзделиямToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-18 21:39:23 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormReportSushiComponent>();
|
|
|
|
|
form.ShowDialog();
|
2024-03-24 18:34:36 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void списокЗаказовToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-18 21:39:23 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormReportOrders>();
|
|
|
|
|
form.ShowDialog();
|
2024-03-24 18:34:36 +04:00
|
|
|
|
}
|
2024-04-06 16:20:22 +03:00
|
|
|
|
|
|
|
|
|
private void клиентыToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-18 21:39:23 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormClients>();
|
|
|
|
|
form.ShowDialog();
|
2024-04-20 21:27:36 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void исполнителиToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-18 21:39:23 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormImplementers>();
|
|
|
|
|
form.ShowDialog();
|
2024-04-06 16:20:22 +03:00
|
|
|
|
}
|
2024-04-21 00:48:13 +04:00
|
|
|
|
|
|
|
|
|
private void запускРаботToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-19 18:11:43 +04:00
|
|
|
|
_workProcess.DoWork((DependencyManager.Instance.Resolve<IImplementerLogic>() as IImplementerLogic)!, _orderLogic);
|
2024-04-22 12:11:57 +04:00
|
|
|
|
MessageBox.Show("Процесс обработки запущен", "Сообщение", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
2024-04-21 00:48:13 +04:00
|
|
|
|
}
|
2024-05-05 15:12:28 +04:00
|
|
|
|
|
|
|
|
|
private void списокПисемToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-18 21:39:23 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormMails>();
|
|
|
|
|
form.ShowDialog();
|
2024-05-05 15:12:28 +04:00
|
|
|
|
}
|
2024-05-18 00:08:21 +04:00
|
|
|
|
|
|
|
|
|
private void создатьБекапToolStripMenuItem_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-25 19:52:48 +04:00
|
|
|
|
}
|
|
|
|
|
}
|