2024-03-24 19:08:21 +04:00
|
|
|
|
using AbstractLawFirmBusinessLogic.BusinessLogic;
|
|
|
|
|
using AbstractLawFirmContracts.BindingModels;
|
2024-02-12 01:33:41 +04:00
|
|
|
|
using AbstractLawFirmContracts.BusinessLogicsContracts;
|
2024-05-19 02:18:51 +04:00
|
|
|
|
using AbstractLawFirmContracts.DI;
|
2024-02-12 01:33:41 +04:00
|
|
|
|
using AbstractLawFirmDataModels.Enums;
|
2024-05-19 02:18:51 +04:00
|
|
|
|
using DocumentFormat.OpenXml.Spreadsheet;
|
2024-02-12 01:33:41 +04:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
|
|
|
|
namespace LawFirmView
|
|
|
|
|
{
|
|
|
|
|
public partial class FormMain : Form
|
|
|
|
|
{
|
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
private readonly IOrderLogic _orderLogic;
|
2024-03-24 19:08:21 +04:00
|
|
|
|
private readonly IReportLogic _reportLogic;
|
2024-04-20 00:13:54 +04:00
|
|
|
|
private readonly IWorkProcess _workProcess;
|
2024-05-19 02:18:51 +04:00
|
|
|
|
private readonly IBackUpLogic _backUpLogic;
|
|
|
|
|
public FormMain(ILogger<FormMain> logger, IOrderLogic orderLogic, IReportLogic reportLogic, IWorkProcess workProcess, IBackUpLogic backUpLogic)
|
2024-02-12 01:33:41 +04:00
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
_logger = logger;
|
|
|
|
|
_orderLogic = orderLogic;
|
2024-03-24 19:08:21 +04:00
|
|
|
|
_reportLogic = reportLogic;
|
2024-04-20 00:13:54 +04:00
|
|
|
|
_workProcess = workProcess;
|
2024-05-19 02:18:51 +04:00
|
|
|
|
_backUpLogic = backUpLogic;
|
|
|
|
|
}
|
2024-02-12 01:33:41 +04:00
|
|
|
|
|
|
|
|
|
private void FormMain_Load(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
|
|
|
|
private void LoadData()
|
|
|
|
|
{
|
|
|
|
|
_logger.LogInformation("Загрузка заказов");
|
|
|
|
|
try
|
|
|
|
|
{
|
2024-05-19 02:18:51 +04:00
|
|
|
|
dataGridView.FillAndConfigGrid(_orderLogic.ReadList(null));
|
|
|
|
|
_logger.LogInformation("Загрузка заказов");
|
2024-02-12 01:33:41 +04:00
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Ошибка загрузки заказов");
|
|
|
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void компонентыToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-19 02:18:51 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormComponents>();
|
2024-02-12 01:33:41 +04:00
|
|
|
|
form.ShowDialog();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void пакетыДокументовToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-19 02:18:51 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormDocuments>();
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
|
2024-02-12 01:33:41 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void buttonCreateOrder_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-19 02:18:51 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormCreateOrder>();
|
|
|
|
|
form.ShowDialog();
|
2024-02-12 01:33:41 +04:00
|
|
|
|
LoadData();
|
2024-05-19 02:18:51 +04:00
|
|
|
|
|
2024-02-12 01:33:41 +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("Заказ №{id}. Меняется статус на 'Выдан'",
|
|
|
|
|
id);
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var operationResult = _orderLogic.DeliveryOrder(CreateBindingModel(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 OrderBindingModel CreateBindingModel(int id, bool isDone = false)
|
|
|
|
|
{
|
|
|
|
|
return new OrderBindingModel
|
|
|
|
|
{
|
|
|
|
|
Id = id,
|
|
|
|
|
DocumentId = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["DocumentId"].Value),
|
|
|
|
|
Status = Enum.Parse<OrderStatus>(dataGridView.SelectedRows[0].Cells["Status"].Value.ToString()),
|
|
|
|
|
Count = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Count"].Value),
|
|
|
|
|
Sum = double.Parse(dataGridView.SelectedRows[0].Cells["Sum"].Value.ToString()),
|
|
|
|
|
DateCreate = DateTime.Parse(dataGridView.SelectedRows[0].Cells["DateCreate"].Value.ToString()),
|
|
|
|
|
};
|
|
|
|
|
}
|
2024-03-24 19:08:21 +04:00
|
|
|
|
|
|
|
|
|
private void списокПакетовДокументовToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
using var dialog = new SaveFileDialog { Filter = "docx|*.docx" };
|
|
|
|
|
if (dialog.ShowDialog() == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
_reportLogic.SaveDocumentsToWordFile(new ReportBindingModel
|
|
|
|
|
{
|
|
|
|
|
FileName = dialog.FileName
|
|
|
|
|
});
|
|
|
|
|
MessageBox.Show("Выполнено", "Успех", MessageBoxButtons.OK,
|
|
|
|
|
MessageBoxIcon.Information);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void компонентыПоПакетамДокументовToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-19 02:18:51 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormReportDocumentComponents>();
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
|
2024-03-24 19:08:21 +04:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void списокЗаказовToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-19 02:18:51 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormReportOrders>();
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
|
2024-03-24 19:08:21 +04:00
|
|
|
|
}
|
2024-04-06 01:13:12 +04:00
|
|
|
|
|
|
|
|
|
private void клиентыToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-19 02:18:51 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormClients>();
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
|
2024-04-06 01:13:12 +04:00
|
|
|
|
}
|
2024-04-20 00:13:54 +04:00
|
|
|
|
|
|
|
|
|
private void исполнителиToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-19 02:18:51 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormImplementers>();
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
|
2024-04-20 00:13:54 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void запускРаботToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-19 02:18:51 +04:00
|
|
|
|
_workProcess.DoWork(DependencyManager.Instance.Resolve<IImplementerLogic>(), _orderLogic);
|
|
|
|
|
MessageBox.Show("Процесс обработки запущен", "Сообщение", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
2024-04-20 00:13:54 +04:00
|
|
|
|
}
|
2024-05-05 00:28:40 +04:00
|
|
|
|
|
|
|
|
|
private void почтаToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-19 02:18:51 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormMail>();
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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("Backup created", "Message", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
2024-05-05 00:28:40 +04:00
|
|
|
|
{
|
2024-05-19 02:18:51 +04:00
|
|
|
|
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
2024-05-05 00:28:40 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-02-12 01:33:41 +04:00
|
|
|
|
}
|