157 lines
5.7 KiB
C#
157 lines
5.7 KiB
C#
using Microsoft.Extensions.Logging;
|
|
using PrecastConcretePlantContracts.BindingModels;
|
|
using PrecastConcretePlantContracts.BusinessLogicsContracts;
|
|
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;
|
|
public FormMain(ILogger<FormMain> logger, IOrderLogic orderLogic)
|
|
{
|
|
InitializeComponent();
|
|
_logger = logger;
|
|
_orderLogic = orderLogic;
|
|
}
|
|
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["ReinforcedId"].Visible = false;
|
|
dataGridView.Columns["ReinforcedName"].AutoSizeMode =
|
|
DataGridViewAutoSizeColumnMode.Fill;
|
|
}
|
|
_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(FormReinforcedS));
|
|
if (service is FormReinforcedS 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 ButtonTakeOrderInWork_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.TakeOrderInWork(new OrderBindingModel
|
|
{
|
|
Id = id
|
|
});
|
|
if (!operationResult)
|
|
{
|
|
throw new Exception("Îøèáêà ïðè ñîõðàíåíèè. Äîïîëíèòåëüíàÿ èíôîðìàöèÿ â ëîãàõ.");
|
|
}
|
|
LoadData();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Îøèáêà ïåðåäà÷è çàêàçà â ðàáîòó");
|
|
MessageBox.Show(ex.Message, "Îøèáêà", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
}
|
|
}
|
|
}
|
|
private void ButtonOrderReady_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.FinishOrder(new OrderBindingModel
|
|
{
|
|
Id = id
|
|
});
|
|
if (!operationResult)
|
|
{
|
|
throw new Exception("Îøèáêà ïðè ñîõðàíåíèè. Äîïîëíèòåëüíàÿ èíôîðìàöèÿ â ëîãàõ.");
|
|
}
|
|
LoadData();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Îøèáêà îòìåòêè î ãîòîâíîñòè çàêàçà");
|
|
MessageBox.Show(ex.Message, "Îøèáêà", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
}
|
|
}
|
|
}
|
|
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();
|
|
}
|
|
}
|
|
}
|