237 lines
8.4 KiB
C#
237 lines
8.4 KiB
C#
using Microsoft.Extensions.Logging;
|
||
using PlumbingRepairBusinessLogic.BusinessLogics;
|
||
using PlumbingRepairContracts.BindingModels;
|
||
using PlumbingRepairContracts.BusinessLogicsContracts;
|
||
|
||
namespace PlumbingRepairView
|
||
{
|
||
public partial class FormMain : Form
|
||
{
|
||
private readonly ILogger _logger;
|
||
|
||
private readonly IOrderLogic _orderLogic;
|
||
private readonly IReportLogic _reportLogic;
|
||
private readonly IWorkProcess _workProcess;
|
||
public FormMain(ILogger<FormMain> logger, IOrderLogic orderLogic, IReportLogic reportLogic, IWorkProcess workProcess)
|
||
{
|
||
InitializeComponent();
|
||
_logger = logger;
|
||
_orderLogic = orderLogic;
|
||
_reportLogic = reportLogic;
|
||
_workProcess = workProcess;
|
||
}
|
||
|
||
private void FormMain_Load(object sender, EventArgs e)
|
||
{
|
||
LoadData();
|
||
}
|
||
|
||
private void LoadData()
|
||
{
|
||
try
|
||
{
|
||
var list = _orderLogic.ReadList(null);
|
||
if (list != null)
|
||
{
|
||
dataGridView.DataSource = list;
|
||
dataGridView.Columns["Id"].Visible = false;
|
||
dataGridView.Columns["ImplementerId"].Visible = false;
|
||
}
|
||
_logger.LogInformation("Загрузка заказов");
|
||
}
|
||
catch (Exception ex)
|
||
{
|
||
_logger.LogError(ex, "Ошибка загрузки заказов");
|
||
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||
}
|
||
}
|
||
|
||
private void КомпонентыToolStripMenuItem_Click(object sender, EventArgs e)
|
||
{
|
||
var service = Program.ServiceProvider?.GetService(typeof(FormComponents));
|
||
if (service is FormComponents form)
|
||
{
|
||
form.ShowDialog();
|
||
}
|
||
}
|
||
|
||
|
||
private void РаботыToolStripMenuItem_Click(object sender, EventArgs e)
|
||
{
|
||
var service = Program.ServiceProvider?.GetService(typeof(FormWorks));
|
||
if (service is FormWorks form)
|
||
{
|
||
form.ShowDialog();
|
||
}
|
||
}
|
||
private void магазиныToolStripMenuItem_Click(object sender, EventArgs e)
|
||
{
|
||
var service = Program.ServiceProvider?.GetService(typeof(FormShops));
|
||
if (service is FormShops form)
|
||
{
|
||
form.ShowDialog();
|
||
}
|
||
}
|
||
private void пополнениеToolStripMenuItem_Click(object sender, EventArgs e)
|
||
{
|
||
var service = Program.ServiceProvider?.GetService(typeof(FormStoreReplenishment));
|
||
if (service is FormStoreReplenishment form)
|
||
{
|
||
form.ShowDialog();
|
||
}
|
||
}
|
||
|
||
private void ButtonCreateOrder_Click(object sender, EventArgs e)
|
||
{
|
||
var service = Program.ServiceProvider?.GetService(typeof(FormCreateOrder));
|
||
if (service is FormCreateOrder form)
|
||
{
|
||
form.ShowDialog();
|
||
LoadData();
|
||
}
|
||
}
|
||
|
||
|
||
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 ButtonRef_Click(object sender, EventArgs e)
|
||
{
|
||
LoadData();
|
||
}
|
||
|
||
private void продажаРаботToolStripMenuItem_Click(object sender, EventArgs e)
|
||
{
|
||
var service = Program.ServiceProvider?.GetService(typeof(FormSellWorks));
|
||
if (service is FormSellWorks form)
|
||
{
|
||
form.ShowDialog();
|
||
}
|
||
}
|
||
|
||
private void списокКомпонентовToolStripMenuItem_Click(object sender, EventArgs e)
|
||
{
|
||
|
||
}
|
||
private void ComponentsToolStripMenuItem_Click(object sender, EventArgs e)
|
||
{
|
||
using var dialog = new SaveFileDialog { Filter = "docx|*.docx" };
|
||
if (dialog.ShowDialog() == DialogResult.OK)
|
||
{
|
||
_reportLogic.SaveComponentsToWordFile(new ReportBindingModel
|
||
{
|
||
FileName = dialog.FileName
|
||
});
|
||
MessageBox.Show("Выполнено", "Успех", MessageBoxButtons.OK,
|
||
MessageBoxIcon.Information);
|
||
}
|
||
}
|
||
private void ComponentWorksToolStripMenuItem_Click(object sender,
|
||
EventArgs e)
|
||
{
|
||
var service =
|
||
Program.ServiceProvider?.GetService(typeof(FormReportWorkComponents));
|
||
if (service is FormReportWorkComponents form)
|
||
{
|
||
form.ShowDialog();
|
||
}
|
||
}
|
||
private void OrdersToolStripMenuItem_Click(object sender, EventArgs e)
|
||
{
|
||
var service =
|
||
Program.ServiceProvider?.GetService(typeof(FormReportOrders));
|
||
if (service is FormReportOrders form)
|
||
{
|
||
form.ShowDialog();
|
||
}
|
||
}
|
||
private void ShopsToolStripMenuItem_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 ShopWorksToolStripMenuItem_Click(object sender,
|
||
EventArgs e)
|
||
{
|
||
var service =
|
||
Program.ServiceProvider?.GetService(typeof(FormReportShopWorks));
|
||
if (service is FormReportShopWorks form)
|
||
{
|
||
form.ShowDialog();
|
||
}
|
||
}
|
||
private void OrdersByDateToolStripMenuItem_Click(object sender, EventArgs e)
|
||
{
|
||
var service =
|
||
Program.ServiceProvider?.GetService(typeof(FormReportOrdersByDate));
|
||
if (service is FormReportOrdersByDate form)
|
||
{
|
||
form.ShowDialog();
|
||
}
|
||
}
|
||
|
||
private void клиентыToolStripMenuItem_Click(object sender, EventArgs e)
|
||
{
|
||
var service =
|
||
Program.ServiceProvider?.GetService(typeof(FormClients));
|
||
if (service is FormClients form)
|
||
{
|
||
form.ShowDialog();
|
||
}
|
||
}
|
||
|
||
private void выполнениеРаботToolStripMenuItem_Click(object sender, EventArgs e)
|
||
{
|
||
_workProcess.DoWork((Program.ServiceProvider?.GetService(typeof(IImplementerLogic)) as IImplementerLogic)!, _orderLogic);
|
||
MessageBox.Show("Процесс обработки запущен", "Сообщение",
|
||
MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||
}
|
||
|
||
private void исполнителиToolStripMenuItem_Click(object sender, EventArgs e)
|
||
{
|
||
var service =
|
||
Program.ServiceProvider?.GetService(typeof(FormImplementers));
|
||
if (service is FormImplementers form)
|
||
{
|
||
form.ShowDialog();
|
||
}
|
||
}
|
||
private void письмаToolStripMenuItem_Click(object sender, EventArgs e)
|
||
{
|
||
var service = Program.ServiceProvider?.GetService(typeof(FormMails));
|
||
if (service is FormMails form)
|
||
{
|
||
form.ShowDialog();
|
||
}
|
||
}
|
||
}
|
||
} |