172 lines
5.6 KiB
C#
172 lines
5.6 KiB
C#
using Microsoft.Extensions.Logging;
|
|
using PrecastConcretePlantBusinessLogic.BusinessLogic;
|
|
using PrecastConcretePlantContracts.BindingModels;
|
|
using PrecastConcretePlantContracts.BusinessLogicsContracts;
|
|
using PrecastConcretePlantContracts.DI;
|
|
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 PrecastConcretePlantView
|
|
{
|
|
public partial class FormMain : Form
|
|
{
|
|
private readonly ILogger _logger;
|
|
private readonly IOrderLogic _orderLogic;
|
|
private readonly IReportLogic _reportLogic;
|
|
private readonly IWorkProcess _workProcess;
|
|
private readonly IBackUpLogic _backUpLogic;
|
|
public FormMain(ILogger<FormMain> logger, IOrderLogic orderLogic, IReportLogic reportLogic, IWorkProcess workProcess, IBackUpLogic backUpLogic)
|
|
{
|
|
InitializeComponent();
|
|
_logger = logger;
|
|
_orderLogic = orderLogic;
|
|
_reportLogic = reportLogic;
|
|
_workProcess = workProcess;
|
|
_backUpLogic = backUpLogic;
|
|
}
|
|
private void FormMain_Load(object sender, EventArgs e)
|
|
{
|
|
LoadData();
|
|
}
|
|
private void LoadData()
|
|
{
|
|
try
|
|
{
|
|
dataGridView.FillAndConfigGrid(_orderLogic.ReadList(null));
|
|
_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 form = DependencyManager.Instance.Resolve<FormComponentS>();
|
|
form.ShowDialog();
|
|
}
|
|
private void ÈçäåëèÿToolStripMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
var form = DependencyManager.Instance.Resolve<FormReinforcedS>();
|
|
form.ShowDialog();
|
|
}
|
|
private void ButtonCreateOrder_Click(object sender, EventArgs e)
|
|
{
|
|
var form = DependencyManager.Instance.Resolve<FormCreateOrder>();
|
|
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("Çàêàç No{id}. Ìåíÿåòñÿ ñòàòóñ íà 'Âûäàí'", id);
|
|
try
|
|
{
|
|
var operationResult = _orderLogic.DeliveryOrder(new OrderBindingModel
|
|
{
|
|
Id = id
|
|
});
|
|
if (!operationResult)
|
|
{
|
|
throw new Exception("Îøèáêà ïðè ñîõðàíåíèè. Äîïîëíèòåëüíàÿ èíôîðìàöèÿ â ëîãàõ.");
|
|
}
|
|
_logger.LogInformation("Çàêàç No{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)
|
|
{
|
|
using var dialog = new SaveFileDialog { Filter = "docx|*.docx" };
|
|
if (dialog.ShowDialog() == DialogResult.OK)
|
|
{
|
|
_reportLogic.SaveReinforcedsToWordFile(new ReportBindingModel { FileName = dialog.FileName });
|
|
MessageBox.Show("Âûïîëíåíî", "Óñïåõ", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
}
|
|
}
|
|
|
|
private void èçäåëèÿÏîÊîìïîíåíòàìToolStripMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
var form = DependencyManager.Instance.Resolve<FormReportReinforcedComponents>();
|
|
form.ShowDialog();
|
|
}
|
|
|
|
private void ñïèñîêÇàêàçîâToolStripMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
var form = DependencyManager.Instance.Resolve<FormReportOrders>();
|
|
form.ShowDialog();
|
|
}
|
|
private void ñïèñîêÊëèåíòîâToolStripMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
var form = DependencyManager.Instance.Resolve<FormClients>();
|
|
form.ShowDialog();
|
|
}
|
|
|
|
private void çàïóñêÐàáîòToolStripMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
_workProcess.DoWork(DependencyManager.Instance.Resolve<IImplementerLogic>(), _orderLogic);
|
|
MessageBox.Show("Ïðîöåññ îáðàáîòêè çàïóùåí", "Ñîîáùåíèå",
|
|
MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
}
|
|
|
|
private void èñïîëíèòåëèToolStripMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
var form = DependencyManager.Instance.Resolve<FormImplementerS>();
|
|
form.ShowDialog();
|
|
}
|
|
private void ïèñüìàToolStripMenuItem_Click(object sender, EventArgs e)
|
|
{
|
|
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 BackUpSaveBindingModel
|
|
{
|
|
FolderName = fbd.SelectedPath
|
|
});
|
|
MessageBox.Show("Áåêàï ñîçäàí", "Ñîîáùåíèå",
|
|
MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
}
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
MessageBox.Show(ex.Message, "Îøèáêà", MessageBoxButtons.OK,
|
|
MessageBoxIcon.Error);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|