Postavshiki_update.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. using System.Data.SqlClient;
  11. namespace proba
  12. {
  13. public partial class Postavshiki_update : Form
  14. {
  15. string id_supplier;
  16. public int razmer = 0;
  17. public static string[] update_supplier = new string[1];
  18. DataBase dataBase = new DataBase();
  19. public Postavshiki_update(string id_supplier, string name_organization,string surname, string name, string patronymic, string pol, string phone)
  20. {
  21. InitializeComponent();
  22. text_id_view_tools.Text = pol;
  23. textBox2.Text = name_organization;
  24. text_price.Text = surname;
  25. text_data_manufacture.Text = name;
  26. textBox1.Text = patronymic;
  27. textBox3.Text = phone;
  28. this.id_supplier = id_supplier;
  29. }
  30. private void button_back_Click(object sender, EventArgs e)
  31. {
  32. this.Hide();
  33. Postavshiki postavshiki = new Postavshiki();
  34. postavshiki.ShowDialog();
  35. }
  36. private void button_save_Click(object sender, EventArgs e)
  37. {
  38. if (textBox2.Text.Replace(" ", "") == "") MessageBox.Show("Поле название не может быть пустым");
  39. else if (text_price.Text.Replace(" ", "") == "") MessageBox.Show("Поле фамилия не может быть пустым");
  40. else if (text_data_manufacture.Text.Replace(" ", "") == "") MessageBox.Show("Поле имя поставки не может быть пустым");
  41. else if (textBox1.Text.Replace(" ", "") == "") MessageBox.Show("Поле отчество поставки не может быть пустым");
  42. else
  43. {
  44. dataBase.openConnection();
  45. string pol;
  46. string sqlCommand_pol = $"SELECT id_pol From Pol WHERE pol = '{text_id_view_tools.Text}'";
  47. SqlCommand sqlCommand2 = new SqlCommand(sqlCommand_pol, dataBase.GetConnection());
  48. SqlDataAdapter sda = new SqlDataAdapter(sqlCommand_pol, dataBase.GetConnection());
  49. DataTable dtbl = new DataTable();
  50. sda.Fill(dtbl);
  51. if (dtbl.Rows.Count != 0)
  52. {
  53. pol = sqlCommand2.ExecuteScalar().ToString();
  54. var addQuery = $"update Supplier set name_organization = '{textBox2.Text}', surname = '{text_price.Text}', name = '{text_data_manufacture.Text}', patronymic = '{textBox1.Text}', id_pol = '{pol}', phone = '{textBox3.Text}' where id_supplier = '{id_supplier}'";
  55. var command = new SqlCommand(addQuery, dataBase.GetConnection());
  56. command.ExecuteNonQuery();
  57. MessageBox.Show("Запись успешно изменена");
  58. update_supplier[razmer] = textBox2.Text;
  59. Array.Resize(ref update_supplier, update_supplier.Length + 1);
  60. razmer++;
  61. dataBase.closeConnection();
  62. this.Hide();
  63. Postavshiki postavshiki = new Postavshiki();
  64. postavshiki.ShowDialog();
  65. }
  66. else
  67. {
  68. MessageBox.Show("Поле пол должно быть выбрано из списка");
  69. }
  70. dataBase.closeConnection();
  71. }
  72. }
  73. public void global_FormClosed(object sender, EventArgs e)
  74. {
  75. Application.Exit();
  76. }
  77. private void Postavshiki_update_Load(object sender, EventArgs e)
  78. {
  79. // TODO: данная строка кода позволяет загрузить данные в таблицу "vINILDataSet_Pol.Pol". При необходимости она может быть перемещена или удалена.
  80. this.polTableAdapter.Fill(this.vINILDataSet_Pol.Pol);
  81. }
  82. private void textBox3_KeyPress(object sender, KeyPressEventArgs e)
  83. {
  84. char number = e.KeyChar;
  85. if (!Char.IsDigit(number) && number != 8 && !(e.KeyChar == '+') && !(e.KeyChar == '(') && !(e.KeyChar == ')'))
  86. {
  87. e.Handled = true;
  88. }
  89. }
  90. }
  91. }