2024-04-07 22:21:31 +04:00
|
|
|
|
using AbstractLawFirmBusinessLogic;
|
|
|
|
|
using AbstractLawFirmContracts.BindingModels;
|
2024-02-27 19:44:44 +04:00
|
|
|
|
using AbstractLawFirmContracts.BusinessLogicsContracts;
|
|
|
|
|
using AbstractLawFirmDataModels.Enums;
|
2024-02-11 18:24:54 +04:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
2024-04-09 23:28:01 +04:00
|
|
|
|
using AbstractLawFirmBusinessLogic.BusinessLogic;
|
2024-02-11 18:24:54 +04:00
|
|
|
|
|
2024-02-14 00:11:21 +04:00
|
|
|
|
namespace LawFirmView
|
2024-02-11 18:24:54 +04:00
|
|
|
|
{
|
|
|
|
|
public partial class FormMain : Form
|
|
|
|
|
{
|
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
private readonly IOrderLogic _orderLogic;
|
2024-04-07 22:21:31 +04:00
|
|
|
|
private readonly IReportLogic _reportLogic;
|
|
|
|
|
public FormMain(ILogger<FormMain> logger, IOrderLogic orderLogic, IReportLogic reportLogic)
|
2024-02-11 18:24:54 +04:00
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
_logger = logger;
|
|
|
|
|
_orderLogic = orderLogic;
|
2024-04-07 22:21:31 +04:00
|
|
|
|
_reportLogic = reportLogic;
|
2024-02-11 18:24:54 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void FormMain_Load(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
|
|
|
|
private void LoadData()
|
|
|
|
|
{
|
|
|
|
|
_logger.LogInformation("Загрузка заказов");
|
2024-02-27 19:44:44 +04:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var list = _orderLogic.ReadList(null);
|
|
|
|
|
if (list != null)
|
|
|
|
|
{
|
|
|
|
|
dataGridView.DataSource = list;
|
|
|
|
|
dataGridView.Columns["DocumentId"].Visible = false;
|
2024-04-20 14:07:58 +04:00
|
|
|
|
dataGridView.Columns["ClientId"].Visible = false;
|
|
|
|
|
|
2024-02-27 19:44:44 +04:00
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("Загрузка заказов");
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Ошибка загрузки заказов");
|
|
|
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
}
|
2024-02-11 18:24:54 +04:00
|
|
|
|
}
|
|
|
|
|
|
2024-02-27 19:44:44 +04:00
|
|
|
|
private void компонентыToolStripMenuItem_Click(object sender, EventArgs e)
|
2024-02-11 18:24:54 +04:00
|
|
|
|
{
|
|
|
|
|
var service = Program.ServiceProvider?.GetService(typeof(FormComponents));
|
|
|
|
|
if (service is FormComponents form)
|
|
|
|
|
{
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
}
|
2024-02-27 19:44:44 +04:00
|
|
|
|
|
2024-02-11 18:24:54 +04:00
|
|
|
|
}
|
|
|
|
|
|
2024-02-27 19:44:44 +04:00
|
|
|
|
private void пакетыДокументовToolStripMenuItem_Click(object sender, EventArgs e)
|
2024-02-11 18:24:54 +04:00
|
|
|
|
{
|
2024-02-14 00:11:21 +04:00
|
|
|
|
var service = Program.ServiceProvider?.GetService(typeof(FormDocuments));
|
|
|
|
|
if (service is FormDocuments form)
|
|
|
|
|
{
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
}
|
2024-02-11 18:24:54 +04:00
|
|
|
|
}
|
|
|
|
|
|
2024-02-27 19:44:44 +04:00
|
|
|
|
private void buttonCreateOrder_Click(object sender, EventArgs e)
|
2024-02-11 18:24:54 +04:00
|
|
|
|
{
|
|
|
|
|
var service = Program.ServiceProvider?.GetService(typeof(FormCreateOrder));
|
|
|
|
|
if (service is FormCreateOrder form)
|
|
|
|
|
{
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
2024-02-27 19:44:44 +04:00
|
|
|
|
|
2024-02-11 18:24:54 +04:00
|
|
|
|
}
|
|
|
|
|
|
2024-02-27 19:44:44 +04:00
|
|
|
|
private void buttonTakeOrderInWork_Click(object sender, EventArgs e)
|
2024-02-11 18:24:54 +04:00
|
|
|
|
{
|
|
|
|
|
if (dataGridView.SelectedRows.Count == 1)
|
|
|
|
|
{
|
2024-02-27 19:44:44 +04:00
|
|
|
|
int id =
|
|
|
|
|
Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value);
|
2024-02-11 18:24:54 +04:00
|
|
|
|
_logger.LogInformation("Заказ №{id}. Меняется статус на 'В работе'", id);
|
|
|
|
|
try
|
|
|
|
|
{
|
2024-02-27 19:44:44 +04:00
|
|
|
|
var operationResult = _orderLogic.TakeOrderInWork(CreateBindingModel(id));
|
2024-02-11 18:24:54 +04:00
|
|
|
|
if (!operationResult)
|
|
|
|
|
{
|
|
|
|
|
throw new Exception("Ошибка при сохранении. Дополнительная информация в логах.");
|
|
|
|
|
}
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Ошибка передачи заказа в работу");
|
2024-02-27 19:44:44 +04:00
|
|
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK,
|
|
|
|
|
MessageBoxIcon.Error);
|
2024-02-11 18:24:54 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
2024-02-27 19:44:44 +04:00
|
|
|
|
|
2024-02-11 18:24:54 +04:00
|
|
|
|
}
|
|
|
|
|
|
2024-02-27 19:44:44 +04:00
|
|
|
|
private void buttonOrderReady_Click(object sender, EventArgs e)
|
2024-02-11 18:24:54 +04:00
|
|
|
|
{
|
|
|
|
|
if (dataGridView.SelectedRows.Count == 1)
|
|
|
|
|
{
|
2024-02-27 19:44:44 +04:00
|
|
|
|
int id =
|
|
|
|
|
Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value);
|
|
|
|
|
_logger.LogInformation("Заказ №{id}. Меняется статус на 'Готов'",
|
|
|
|
|
id);
|
2024-02-11 18:24:54 +04:00
|
|
|
|
try
|
|
|
|
|
{
|
2024-02-27 19:44:44 +04:00
|
|
|
|
var operationResult = _orderLogic.FinishOrder(CreateBindingModel(id));
|
2024-02-11 18:24:54 +04:00
|
|
|
|
if (!operationResult)
|
|
|
|
|
{
|
|
|
|
|
throw new Exception("Ошибка при сохранении. Дополнительная информация в логах.");
|
|
|
|
|
}
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Ошибка отметки о готовности заказа");
|
2024-04-10 00:34:27 +04:00
|
|
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
2024-02-11 18:24:54 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
2024-02-27 19:44:44 +04:00
|
|
|
|
|
2024-02-11 18:24:54 +04:00
|
|
|
|
}
|
|
|
|
|
|
2024-02-27 19:44:44 +04:00
|
|
|
|
private void buttonIssuedOrder_Click(object sender, EventArgs e)
|
2024-02-11 18:24:54 +04:00
|
|
|
|
{
|
|
|
|
|
if (dataGridView.SelectedRows.Count == 1)
|
|
|
|
|
{
|
2024-02-27 19:44:44 +04:00
|
|
|
|
int id =
|
|
|
|
|
Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value);
|
|
|
|
|
_logger.LogInformation("Заказ №{id}. Меняется статус на 'Выдан'",
|
|
|
|
|
id);
|
2024-02-11 18:24:54 +04:00
|
|
|
|
try
|
|
|
|
|
{
|
2024-02-27 19:44:44 +04:00
|
|
|
|
var operationResult = _orderLogic.DeliveryOrder(CreateBindingModel(id));
|
2024-02-11 18:24:54 +04:00
|
|
|
|
if (!operationResult)
|
|
|
|
|
{
|
|
|
|
|
throw new Exception("Ошибка при сохранении. Дополнительная информация в логах.");
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("Заказ №{id} выдан", id);
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Ошибка отметки о выдачи заказа");
|
2024-02-27 19:44:44 +04:00
|
|
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK,
|
|
|
|
|
MessageBoxIcon.Error);
|
2024-02-11 18:24:54 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
2024-02-27 19:44:44 +04:00
|
|
|
|
|
2024-02-11 18:24:54 +04:00
|
|
|
|
}
|
|
|
|
|
|
2024-02-27 19:44:44 +04:00
|
|
|
|
private void buttonRef_Click(object sender, EventArgs e)
|
2024-02-11 18:24:54 +04:00
|
|
|
|
{
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
2024-02-27 19:44:44 +04:00
|
|
|
|
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-04-10 00:34:27 +04:00
|
|
|
|
|
2024-04-09 23:28:01 +04:00
|
|
|
|
private void списокПакетовДокументовToolStripMenuItem_Click(object sender, EventArgs e)
|
2024-04-07 22:21:31 +04:00
|
|
|
|
{
|
|
|
|
|
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)
|
|
|
|
|
{
|
|
|
|
|
var service = Program.ServiceProvider?.GetService(typeof(FormReportDocumentComponents));
|
|
|
|
|
if (service is FormReportDocumentComponents form)
|
|
|
|
|
{
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void списокЗаказовToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
var service = Program.ServiceProvider?.GetService(typeof(FormReportOrders));
|
|
|
|
|
if (service is FormReportOrders form)
|
|
|
|
|
{
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-04-20 14:07:58 +04:00
|
|
|
|
|
|
|
|
|
private void клиентыToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
var service = Program.ServiceProvider?.GetService(typeof(FormClients));
|
|
|
|
|
if (service is FormClients form)
|
|
|
|
|
{
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-02-11 18:24:54 +04:00
|
|
|
|
}
|
2024-04-10 00:34:27 +04:00
|
|
|
|
}
|