2024-05-22 17:07:35 +04:00
|
|
|
|
using FurnitureAssemblyBusinessLogic.BussinessLogic;
|
|
|
|
|
using FurnitureAssemblyContracts.BindingModels;
|
2024-02-26 10:12:21 +04:00
|
|
|
|
using FurnitureAssemblyContracts.BusinessLogicsContracts;
|
2024-05-22 16:34:25 +04:00
|
|
|
|
using FurnitureAssemblyContracts.DI;
|
2024-02-26 10:12:21 +04:00
|
|
|
|
using FurnitureAssemblyDataModels.Enums;
|
|
|
|
|
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 FurnitureAssemblyView
|
|
|
|
|
{
|
|
|
|
|
public partial class FormMain : Form
|
|
|
|
|
{
|
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
|
|
|
|
|
private readonly IOrderLogic _orderLogic;
|
|
|
|
|
|
2024-04-08 14:11:47 +04:00
|
|
|
|
private readonly IReportLogic _reportLogic;
|
|
|
|
|
|
2024-05-11 02:30:02 +04:00
|
|
|
|
private readonly IWorkProcess _workProcess;
|
|
|
|
|
|
2024-05-22 16:34:25 +04:00
|
|
|
|
private readonly IBackUpLogic _backUpLogic;
|
|
|
|
|
|
|
|
|
|
public FormMain(ILogger<FormMain> logger, IOrderLogic orderLogic, IReportLogic reportLogic, IWorkProcess workProcess, IBackUpLogic backUpLogic)
|
2024-02-26 10:12:21 +04:00
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
|
|
|
|
_logger = logger;
|
|
|
|
|
_orderLogic = orderLogic;
|
2024-04-08 14:11:47 +04:00
|
|
|
|
_reportLogic = reportLogic;
|
2024-05-11 02:30:02 +04:00
|
|
|
|
_workProcess = workProcess;
|
2024-05-22 16:34:25 +04:00
|
|
|
|
_backUpLogic = backUpLogic;
|
2024-02-26 10:12:21 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void FormMain_Load(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void LoadData()
|
|
|
|
|
{
|
|
|
|
|
_logger.LogInformation("Загрузка заказов");
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
2024-05-22 16:34:25 +04:00
|
|
|
|
dataGridView.FillandConfigGrid(_orderLogic.ReadList(null));
|
2024-02-26 10:12:21 +04:00
|
|
|
|
|
2024-05-22 17:07:35 +04:00
|
|
|
|
_logger.LogInformation("Загрузка заказов");
|
2024-02-26 10:12:21 +04:00
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Ошибка загрузки заказов");
|
|
|
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void WorkPieceToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-22 16:34:25 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormWorkPieces>();
|
2024-02-26 10:12:21 +04:00
|
|
|
|
|
2024-05-22 16:34:25 +04:00
|
|
|
|
form.ShowDialog();
|
2024-02-26 10:12:21 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void FurnitureToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-22 16:34:25 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormFurnitures>();
|
2024-02-26 10:12:21 +04:00
|
|
|
|
|
2024-05-22 16:34:25 +04:00
|
|
|
|
form.ShowDialog();
|
2024-02-26 10:12:21 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ButtonCreateOrder_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-22 16:34:25 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormCreateOrder>();
|
2024-02-26 10:12:21 +04:00
|
|
|
|
|
2024-05-22 16:34:25 +04:00
|
|
|
|
form.ShowDialog();
|
|
|
|
|
LoadData();
|
2024-02-26 10:12:21 +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(new OrderBindingModel
|
|
|
|
|
{
|
|
|
|
|
Id = id
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (!operationResult)
|
|
|
|
|
{
|
2024-05-22 17:07:35 +04:00
|
|
|
|
throw new Exception("Ошибка при сохранении. Дополнительная информация в логах.");
|
2024-02-26 10:12:21 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_logger.LogInformation("Заказ №{id} выдан", id);
|
|
|
|
|
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Ошибка отметки о выдачи заказа");
|
|
|
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-22 17:07:35 +04:00
|
|
|
|
private void ButtonRefresh_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ShopToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormShops>();
|
|
|
|
|
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void AddFurnitureToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormAddFurniture>();
|
|
|
|
|
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ButtonSellFurniture_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormSellFurniture>();
|
|
|
|
|
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void GroupedOrdersReportToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormReportGroupedOrders>();
|
|
|
|
|
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void OrdersReportToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormReportOrders>();
|
|
|
|
|
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void WorkloadStoresReportToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormReportShopFurnitures>();
|
|
|
|
|
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ShopsReportToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
using var dialog = new SaveFileDialog { Filter = "docx|*.docx" };
|
|
|
|
|
|
|
|
|
|
if (dialog.ShowDialog() == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
_reportLogic.SaveShopsToWordFile(new ReportBindingModel { FileName = dialog.FileName });
|
|
|
|
|
MessageBox.Show("Выполнено", "Успех", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ReportFurnitureToolStripMenuItem_Click(object sender, EventArgs e)
|
2024-04-08 14:11:47 +04:00
|
|
|
|
{
|
|
|
|
|
using var dialog = new SaveFileDialog { Filter = "docx|*.docx" };
|
|
|
|
|
|
|
|
|
|
if (dialog.ShowDialog() == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
_reportLogic.SaveFurnituresToWordFile(new ReportBindingModel
|
|
|
|
|
{
|
|
|
|
|
FileName = dialog.FileName
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
MessageBox.Show("Выполнено", "Успех", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void WorkPieceFurnituresToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-05-22 16:34:25 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormReportFurnitureWorkPieces>();
|
2024-04-08 14:11:47 +04:00
|
|
|
|
|
2024-05-22 16:34:25 +04:00
|
|
|
|
form.ShowDialog();
|
2024-04-08 14:11:47 +04:00
|
|
|
|
}
|
|
|
|
|
|
2024-05-22 17:07:35 +04:00
|
|
|
|
private void ClientsToolStripMenuItem_Click(object sender, EventArgs e)
|
2024-04-08 14:11:47 +04:00
|
|
|
|
{
|
2024-05-22 17:07:35 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormClients>();
|
2024-04-08 14:11:47 +04:00
|
|
|
|
|
2024-05-22 16:34:25 +04:00
|
|
|
|
form.ShowDialog();
|
2024-04-08 14:11:47 +04:00
|
|
|
|
}
|
|
|
|
|
|
2024-05-22 17:07:35 +04:00
|
|
|
|
private void ImplementerToolStripMenuItem_Click(object sender, EventArgs e)
|
2024-05-10 22:00:13 +04:00
|
|
|
|
{
|
2024-05-22 17:07:35 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormImplementers>();
|
2024-05-10 22:00:13 +04:00
|
|
|
|
|
2024-05-22 16:34:25 +04:00
|
|
|
|
form.ShowDialog();
|
2024-05-10 22:00:13 +04:00
|
|
|
|
}
|
2024-05-11 02:30:02 +04:00
|
|
|
|
|
2024-05-22 17:07:35 +04:00
|
|
|
|
private void StartWorkToolStripMenuItem_Click(object sender, EventArgs e)
|
2024-05-11 02:30:02 +04:00
|
|
|
|
{
|
2024-05-22 16:34:25 +04:00
|
|
|
|
_workProcess.DoWork(DependencyManager.Instance.Resolve<IImplementerLogic>()!, _orderLogic);
|
2024-05-11 02:30:02 +04:00
|
|
|
|
|
|
|
|
|
MessageBox.Show("Процесс обработки запущен", "Сообщение", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-22 17:07:35 +04:00
|
|
|
|
private void MessageToolStripMenuItem_Click(object sender, EventArgs e)
|
2024-05-12 03:48:14 +04:00
|
|
|
|
{
|
2024-05-22 16:34:25 +04:00
|
|
|
|
var form = DependencyManager.Instance.Resolve<FormMails>();
|
|
|
|
|
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
}
|
2024-05-12 03:48:14 +04:00
|
|
|
|
|
2024-05-22 16:34:25 +04:00
|
|
|
|
private void CreateBackUpToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
try
|
2024-05-12 03:48:14 +04:00
|
|
|
|
{
|
2024-05-22 16:34:25 +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-12 03:48:14 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
2024-02-26 10:12:21 +04:00
|
|
|
|
}
|
|
|
|
|
}
|