Diplom_B/IzdForm.cs

213 lines
5.8 KiB
C#
Raw Normal View History

2021-07-15 16:58:51 +05:00
using Diplom_B.DB;
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 Diplom_B
{
public partial class IzdForm : Form
{
2021-07-16 16:43:55 +05:00
private void ClearBoxes()
2021-07-15 16:58:51 +05:00
{
2021-07-15 23:13:18 +05:00
idLable.Text = "";
2021-07-16 16:43:55 +05:00
nameBox.Text = "";
decBox.Text = "";
shifrBox.Text = "";
literaBox.Text = "";
cenaBox.Text = "";
otdRazBox.Text = "";
vedBox.Text = "";
glavKonstrBox.Text = "";
2021-07-15 16:58:51 +05:00
}
2021-07-16 16:43:55 +05:00
private void UpdateTable(Izdelie[] arr, bool reset_cursor = false)
2021-07-15 16:58:51 +05:00
{
2021-07-16 16:43:55 +05:00
var selected = (!reset_cursor && idzGridView.SelectedRows.Count > 0) ? idzGridView.SelectedRows[0].Index : -1;
2021-07-15 16:58:51 +05:00
{
2021-07-16 16:43:55 +05:00
var r = idzGridView.Rows;
2021-07-15 16:58:51 +05:00
while (r.Count > 0)
r.Remove(r[0]);
2021-07-16 16:43:55 +05:00
var c = idzGridView.Columns;
2021-07-15 16:58:51 +05:00
while (c.Count > 0)
c.Remove(c[0]);
}
{
2021-07-16 16:43:55 +05:00
var c = idzGridView.Columns;
2021-07-15 16:58:51 +05:00
c.Add("Id", "№");
2021-07-15 23:13:18 +05:00
c["Id"].Width = 40;
c.Add("Name", "Наим.");
c["Name"].Width = 60;
c.Add("DecNum", "Дец. №");
c["DecNum"].Width = 120;
2021-07-15 16:58:51 +05:00
c.Add("Shifr", "Шифр");
2021-07-15 23:13:18 +05:00
c["Shifr"].Width = 80;
2021-07-15 16:58:51 +05:00
c.Add("Litera", "Литера");
2021-07-15 23:13:18 +05:00
c["Litera"].Width = 50;
2021-07-15 16:58:51 +05:00
c.Add("Cena", "Цена");
2021-07-15 23:13:18 +05:00
c["Cena"].Width = 70;
2021-07-15 16:58:51 +05:00
c.Add("OtdelRazrab", "Отдел");
2021-07-15 23:13:18 +05:00
c["OtdelRazrab"].Width = 40;
c.Add("Ved", "Вед.");
c.Add("GlavKonstr", "Глав. констр.");
2021-07-15 16:58:51 +05:00
}
{
2021-07-16 16:43:55 +05:00
var r = idzGridView.Rows;
foreach (var izd in arr)
2021-07-15 16:58:51 +05:00
r.Add(new object[] {
izd.Id,
izd.Name,
izd.DecNum,
izd.Shifr,
izd.Litera,
2021-07-15 23:13:18 +05:00
izd.Cena.ToString("F2") + " Р",
2021-07-15 16:58:51 +05:00
izd.OtdelRazrab,
izd.Ved,
izd.GlavKonstr
});
}
2021-07-16 16:43:55 +05:00
if (idzGridView.Rows.Count > 0)
idzGridView.Rows[0].Selected = true;
if (selected != -1 && selected < idzGridView.Rows.Count)
for (var i = 0; i < idzGridView.Rows.Count; i++)
idzGridView.Rows[i].Selected = (i == selected);
izdGridView_CurrentCellChanged(this, new EventArgs());
2021-07-15 16:58:51 +05:00
}
2021-07-15 23:13:18 +05:00
private Task errDrop;
2021-07-15 16:58:51 +05:00
private void ShowError(string msg = null)
{
errorLable.Text = string.IsNullOrEmpty(msg) ? "Неизвестная ошибка." : msg;
errorLable.Visible = true;
2021-07-15 23:13:18 +05:00
errDrop = new Task(() =>
{
var fd = errDrop.Id;
Task.Delay(5000).Wait();
if (errDrop.Id == fd)
if (InvokeRequired) Invoke((Action)(() => { errorLable.Visible = false; }));
else errorLable.Visible = false;
});
errDrop.Start();
2021-07-15 16:58:51 +05:00
}
2021-07-16 16:43:55 +05:00
private Task filterDrop;
private void searchBox_TextChanged(object sender, EventArgs e)
{
filterDrop = new Task(() =>
{
var fd = filterDrop.Id;
Task.Delay(1000).Wait();
if (filterDrop.Id == fd)
if (InvokeRequired) Invoke((Action)(() => { UpdateTable(WorkDB.ListIzdelie(searchBox.Text)); }));
else UpdateTable(WorkDB.ListIzdelie(searchBox.Text));
});
filterDrop.Start();
}
public IzdForm()
{
InitializeComponent();
try
{
UpdateTable(WorkDB.ListIzdelie(searchBox.Text));
}
catch
{
ShowError();
}
}
private void izdGridView_CurrentCellChanged(object sender, EventArgs e)
{
2021-07-15 23:13:18 +05:00
ClearBoxes();
2021-07-16 16:43:55 +05:00
if (idzGridView.SelectedRows.Count != 1)
2021-07-15 23:13:18 +05:00
return;
2021-07-16 16:43:55 +05:00
{
var izd = WorkDB.GetIzdelie((int)idzGridView.SelectedRows[0].Cells[0].Value);
2021-07-15 23:13:18 +05:00
if (izd == null)
return;
idLable.Text = izd.Id.ToString();
nameBox.Text = izd.Name;
decBox.Text = izd.DecNum;
shifrBox.Text = izd.Shifr;
literaBox.Text = izd.Litera;
cenaBox.Text = izd.Cena.ToString();
otdRazBox.Text = izd.OtdelRazrab.ToString();
vedBox.Text = izd.Ved;
glavKonstrBox.Text = izd.GlavKonstr;
}
}
2021-07-16 16:43:55 +05:00
private void createButton_Click(object sender, EventArgs e)
{
if (!double.TryParse(cenaBox.Text, out double cena)) { ShowError("Ошибка цены."); return; }
if (!int.TryParse(otdRazBox.Text, out int otdRaz)) { ShowError("Ошибка отдела-разработчика."); return; }
try
{
var r = new Izdelie()
{
Name = nameBox.Text,
DecNum = decBox.Text,
Shifr = shifrBox.Text,
Litera = literaBox.Text,
Cena = cena,
OtdelRazrab = otdRaz,
Ved = vedBox.Text,
GlavKonstr = glavKonstrBox.Text
};
WorkDB.AddIzdelie(r);
UpdateTable(WorkDB.ListIzdelie(searchBox.Text));
}
catch { ShowError(); }
2021-07-15 23:13:18 +05:00
}
2021-07-16 16:43:55 +05:00
private void clearButton_Click(object sender, EventArgs e)
2021-07-15 23:13:18 +05:00
{
2021-07-16 16:43:55 +05:00
ClearBoxes();
2021-07-15 23:13:18 +05:00
}
2021-07-16 16:43:55 +05:00
private void resetSearchButton_Click(object sender, EventArgs e)
2021-07-15 23:13:18 +05:00
{
searchBox.Text = "";
filterDrop = new Task(() => { return; });
2021-07-16 16:43:55 +05:00
UpdateTable(WorkDB.ListIzdelie(searchBox.Text));
}
private void changeButton_Click(object sender, EventArgs e)
{
if (!int.TryParse(idLable.Text, out int idRes)) { ShowError("Изделие не выбрано."); return; }
var izd = WorkDB.GetIzdelie(idRes);
if (izd == null) { ShowError("Нет изделия в БД."); return; }
if(!double.TryParse(cenaBox.Text, out double cena)) { ShowError("Ошибка цены."); return; }
if (!int.TryParse(otdRazBox.Text, out int otdRaz)) { ShowError("Ошибка отдела-разраб."); return; }
try
{
izd.Name = nameBox.Text;
izd.DecNum = decBox.Text;
izd.Shifr = shifrBox.Text;
izd.Litera = literaBox.Text;
izd.Cena = cena;
izd.OtdelRazrab = otdRaz;
izd.Ved = vedBox.Text;
izd.GlavKonstr = glavKonstrBox.Text;
WorkDB.ChangeIzdelie(izd);
}
catch { ShowError(); }
UpdateTable(WorkDB.ListIzdelie(searchBox.Text));
}
private void deleteButton_Click(object sender, EventArgs e)
{
if (!int.TryParse(idLable.Text, out int idRes)) { ShowError("Изделие не выбрано."); return; }
var izd = WorkDB.GetIzdelie(idRes);
if (izd == null) { ShowError("Изделия не существует."); return; }
try
{
WorkDB.DeleteIzdelie(izd);
}
catch { ShowError(); }
UpdateTable(WorkDB.ListIzdelie(searchBox.Text));
2021-07-15 23:13:18 +05:00
}
2021-07-15 16:58:51 +05:00
}
}