2024-05-11 11:52:27 +04:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using SecuritySystemContracts.BindingModels;
|
|
|
|
|
using SecuritySystemContracts.BusinessLogicsContracts;
|
2024-06-21 23:08:49 +04:00
|
|
|
|
using SecuritySystemContracts.DI;
|
2024-06-21 22:44:35 +04:00
|
|
|
|
using SecuritySystemView.Client;
|
2024-06-21 22:49:53 +04:00
|
|
|
|
using SecuritySystemView.Implementer;
|
2024-06-21 22:56:11 +04:00
|
|
|
|
using SecuritySystemView.Mail;
|
2024-05-11 11:59:11 +04:00
|
|
|
|
using SecuritySystemView.Report;
|
2024-05-11 11:52:27 +04:00
|
|
|
|
|
|
|
|
|
namespace SecuritySystemView
|
|
|
|
|
{
|
|
|
|
|
public partial class FormMain : Form
|
|
|
|
|
{
|
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
private readonly IOrderLogic _orderLogic;
|
2024-05-11 11:59:11 +04:00
|
|
|
|
private readonly IReportLogic _reportLogic;
|
2024-06-21 22:49:53 +04:00
|
|
|
|
private readonly IWorkProcess _workProcess;
|
2024-06-21 23:08:49 +04:00
|
|
|
|
private readonly IBackUpLogic _backUpLogic;
|
|
|
|
|
public FormMain(
|
|
|
|
|
ILogger<FormMain> logger,
|
|
|
|
|
IOrderLogic orderLogic,
|
|
|
|
|
IReportLogic reportLogic,
|
|
|
|
|
IWorkProcess workProcess,
|
|
|
|
|
IBackUpLogic backUpLogic)
|
2024-05-11 11:52:27 +04:00
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
_logger = logger;
|
|
|
|
|
_orderLogic = orderLogic;
|
2024-05-11 11:59:11 +04:00
|
|
|
|
_reportLogic = reportLogic;
|
2024-06-21 22:49:53 +04:00
|
|
|
|
_workProcess = workProcess;
|
2024-06-21 23:08:49 +04:00
|
|
|
|
_backUpLogic = backUpLogic;
|
2024-05-11 11:52:27 +04:00
|
|
|
|
}
|
|
|
|
|
private void FormMain_Load(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
|
|
|
|
private void LoadData()
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2024-06-21 23:08:49 +04:00
|
|
|
|
dataGridView.FillandConfigGrid(_orderLogic.ReadList(null));
|
2024-05-11 11:52:27 +04:00
|
|
|
|
_logger.LogInformation("Загрузка заказов");
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Ошибка загрузки заказов");
|
|
|
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
private void ComponentsToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-06-21 23:08:49 +04:00
|
|
|
|
var service = DependencyManager.Instance.Resolve<FormComponents>();
|
2024-05-11 11:52:27 +04:00
|
|
|
|
if (service is FormComponents form)
|
|
|
|
|
{
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
private void SecuresToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-06-21 23:08:49 +04:00
|
|
|
|
var service = DependencyManager.Instance.Resolve<FormSecures>();
|
2024-05-11 11:52:27 +04:00
|
|
|
|
if (service is FormSecures form)
|
|
|
|
|
{
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
private void ButtonCreateOrder_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-06-21 23:08:49 +04:00
|
|
|
|
var service = DependencyManager.Instance.Resolve<FormCreateOrder>();
|
2024-05-11 11:52:27 +04:00
|
|
|
|
if (service is FormCreateOrder form)
|
|
|
|
|
{
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
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 ButtonRefresh_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
2024-05-11 11:59:11 +04:00
|
|
|
|
|
|
|
|
|
private void ReportSecuresToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
using var dialog = new SaveFileDialog { Filter = "docx|*.docx" };
|
|
|
|
|
if (dialog.ShowDialog() == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
_reportLogic.SaveSecuresToWordFile(new ReportBindingModel
|
|
|
|
|
{
|
|
|
|
|
FileName = dialog.FileName
|
|
|
|
|
});
|
|
|
|
|
MessageBox.Show("Выполнено", "Успех", MessageBoxButtons.OK,
|
|
|
|
|
MessageBoxIcon.Information);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ReportComponentsSecuresToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-06-21 23:08:49 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormReportSecureComponents>();
|
|
|
|
|
form.ShowDialog();
|
2024-05-11 11:59:11 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ReportOrdersToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-06-21 23:08:49 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormReportOrders>();
|
|
|
|
|
form.ShowDialog();
|
2024-05-11 11:59:11 +04:00
|
|
|
|
}
|
2024-06-21 22:44:35 +04:00
|
|
|
|
|
|
|
|
|
private void ClientsToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-06-21 23:08:49 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormClients>();
|
|
|
|
|
form.ShowDialog();
|
2024-06-21 22:44:35 +04:00
|
|
|
|
}
|
2024-06-21 22:49:53 +04:00
|
|
|
|
|
|
|
|
|
private void ImplementersToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-06-21 23:08:49 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormImplementers>();
|
|
|
|
|
form.ShowDialog();
|
2024-06-21 22:49:53 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void StartWorksToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-06-21 23:08:49 +04:00
|
|
|
|
_workProcess.DoWork((DependencyManager.Instance.Resolve<IImplementerLogic>())!, _orderLogic);
|
2024-06-21 22:49:53 +04:00
|
|
|
|
MessageBox.Show("Процесс обработки запущен", "Сообщение", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
|
|
|
}
|
2024-06-21 22:56:11 +04:00
|
|
|
|
|
|
|
|
|
private void MailsToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-06-21 23:08:49 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormMails>();
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void создатьБекапToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
try
|
2024-06-21 22:56:11 +04:00
|
|
|
|
{
|
2024-06-21 23:08:49 +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-06-21 22:56:11 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
2024-05-11 11:52:27 +04:00
|
|
|
|
}
|
|
|
|
|
}
|