2024-05-16 22:59:22 +04:00
|
|
|
|
using IceCreamShopBusinessLogic.BusinessLogics;
|
|
|
|
|
using IceCreamShopContracts.BindingModels;
|
2024-02-10 13:06:58 +04:00
|
|
|
|
using IceCreamShopContracts.BusinessLogicsContracts;
|
2024-05-16 22:59:22 +04:00
|
|
|
|
using IceCreamShopContracts.DI;
|
2024-02-10 13:06:58 +04:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
|
|
|
|
|
namespace IceCreamShopView
|
|
|
|
|
{
|
|
|
|
|
public partial class FormMain : Form
|
|
|
|
|
{
|
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
|
|
|
|
|
private readonly IOrderLogic _orderLogic;
|
|
|
|
|
|
2024-03-25 16:17:40 +04:00
|
|
|
|
private readonly IReportLogic _reportLogic;
|
|
|
|
|
|
2024-05-16 22:59:22 +04:00
|
|
|
|
private readonly IBackUpLogic _backUpLogic;
|
|
|
|
|
|
2024-04-21 21:02:36 +04:00
|
|
|
|
private readonly IWorkProcess _workProcess;
|
|
|
|
|
|
2024-05-16 22:59:22 +04:00
|
|
|
|
public FormMain(ILogger<FormMain> logger, IOrderLogic orderLogic, IReportLogic reportLogic, IWorkProcess workProcess, IBackUpLogic backUpLogic)
|
2024-02-10 13:06:58 +04:00
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
_logger = logger;
|
|
|
|
|
_orderLogic = orderLogic;
|
2024-03-25 16:17:40 +04:00
|
|
|
|
_reportLogic = reportLogic;
|
2024-04-21 21:02:36 +04:00
|
|
|
|
_workProcess = workProcess;
|
2024-05-16 22:59:22 +04:00
|
|
|
|
_backUpLogic = backUpLogic;
|
2024-02-10 13:06:58 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void FormMain_Load(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void LoadData()
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2024-05-16 22:59:22 +04:00
|
|
|
|
dataGridView.FillAndConfigGrid(_orderLogic.ReadList(null));
|
2024-02-10 13:06:58 +04:00
|
|
|
|
_logger.LogInformation("Orders loading");
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Orders loading error");
|
|
|
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void КомпонентыToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-16 22:59:22 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormComponents>();
|
|
|
|
|
form.ShowDialog();
|
2024-02-10 13:06:58 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void МороженоеToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-16 22:59:22 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormIceCreams>();
|
|
|
|
|
form.ShowDialog();
|
2024-02-10 13:06:58 +04:00
|
|
|
|
}
|
|
|
|
|
|
2024-04-07 18:18:58 +04:00
|
|
|
|
private void КлиентыToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-16 22:59:22 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormClients>();
|
|
|
|
|
form.ShowDialog();
|
2024-04-07 18:18:58 +04:00
|
|
|
|
}
|
|
|
|
|
|
2024-04-21 21:02:36 +04:00
|
|
|
|
private void ИсполнителиToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-16 22:59:22 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormImplementers>();
|
|
|
|
|
form.ShowDialog();
|
2024-04-21 21:02:36 +04:00
|
|
|
|
}
|
|
|
|
|
|
2024-03-25 16:17:40 +04:00
|
|
|
|
private void СписокМороженогоToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
using var dialog = new SaveFileDialog { Filter = "docx|*.docx" };
|
|
|
|
|
if (dialog.ShowDialog() == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
_reportLogic.SaveIceCreamsToWordFile(new ReportBindingModel { FileName = dialog.FileName });
|
|
|
|
|
MessageBox.Show("Выполнено", "Успех", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void КомпонентыПоМороженымToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-16 22:59:22 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormReportIceCreamComponents>();
|
|
|
|
|
form.ShowDialog();
|
2024-03-25 16:17:40 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void СписокЗаказовToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-16 22:59:22 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormReportOrders>();
|
|
|
|
|
form.ShowDialog();
|
2024-03-25 16:17:40 +04:00
|
|
|
|
}
|
|
|
|
|
|
2024-04-21 21:02:36 +04:00
|
|
|
|
private void ЗапускРаботToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-16 22:59:22 +04:00
|
|
|
|
_workProcess.DoWork(DependencyManager.Instance.Resolve<IImplementerLogic>(), _orderLogic);
|
2024-04-21 21:02:36 +04:00
|
|
|
|
MessageBox.Show("Процесс обработки запущен", "Сообщение", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-06 02:20:47 +04:00
|
|
|
|
private void ПочтаToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-16 22:59:22 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormMails>();
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void СоздатьБэкапToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
try
|
2024-05-06 02:20:47 +04:00
|
|
|
|
{
|
2024-05-16 22:59:22 +04:00
|
|
|
|
if (_backUpLogic != null)
|
|
|
|
|
{
|
|
|
|
|
var fbd = new FolderBrowserDialog();
|
|
|
|
|
if (fbd.ShowDialog() == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
_backUpLogic.CreateBackUp(new BackUpSaveBindingModel
|
|
|
|
|
{
|
|
|
|
|
FolderName = fbd.SelectedPath
|
|
|
|
|
});
|
|
|
|
|
MessageBox.Show("Бэкап создан", "Сообщение", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show(ex.Message, "Ошибка создания бэкапа", MessageBoxButtons.OK,
|
|
|
|
|
MessageBoxIcon.Error);
|
2024-05-06 02:20:47 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-10 13:06:58 +04:00
|
|
|
|
private void ButtonCreateOrder_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-16 22:59:22 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormCreateOrder>();
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
LoadData();
|
2024-02-10 13:06:58 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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("Order №{id}. Status changes to 'Выдан'", id);
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var operationResult = _orderLogic.DeliveryOrder(new OrderBindingModel { Id = id });
|
|
|
|
|
if (!operationResult)
|
|
|
|
|
{
|
|
|
|
|
throw new Exception("Ошибка при сохранении. Дополнительная информация в логах.");
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("Order №{id} issued", id);
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Order issue marking error");
|
|
|
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ButtonUpd_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|