Postavshiki_add.cs 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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_add : Form
  14. {
  15. public int razmer = 0;
  16. public static string[] add_supplier = new string[1];
  17. DataBase dataBase = new DataBase();
  18. public Postavshiki_add()
  19. {
  20. InitializeComponent();
  21. }
  22. private void button_save_Click(object sender, EventArgs e)
  23. {
  24. if (textBox2.Text.Replace(" ", "") == "") MessageBox.Show("Поле название не может быть пустым");
  25. else if (text_price.Text.Replace(" ", "") == "") MessageBox.Show("Поле фамилия не может быть пустым");
  26. else if (text_data_manufacture.Text.Replace(" ", "") == "") MessageBox.Show("Поле имя поставки не может быть пустым");
  27. else if (textBox1.Text.Replace(" ", "") == "") MessageBox.Show("Поле отчество поставки не может быть пустым");
  28. else
  29. {
  30. dataBase.openConnection();
  31. string pol;
  32. string sqccommand_pol = $"SELECT id_pol From Pol WHERE pol = '{text_id_view_tools.Text}'";
  33. SqlCommand sqlCommand2 = new SqlCommand(sqccommand_pol, dataBase.GetConnection());
  34. SqlDataAdapter sda = new SqlDataAdapter(sqccommand_pol, dataBase.GetConnection());
  35. DataTable dtbl = new DataTable();
  36. sda.Fill(dtbl);
  37. if (dtbl.Rows.Count != 0)
  38. {
  39. pol = sqlCommand2.ExecuteScalar().ToString();
  40. var addQuery = $"insert into Supplier (name_organization, surname, name, patronymic, id_pol, phone) values ('{textBox2.Text}','{text_price.Text}','{text_data_manufacture.Text}','{textBox1.Text}','{pol}','{textBox3.Text}')";
  41. var command = new SqlCommand(addQuery, dataBase.GetConnection());
  42. command.ExecuteNonQuery();
  43. MessageBox.Show("Запись успешно добавлена в таблицу");
  44. add_supplier[razmer] = textBox2.Text;
  45. Array.Resize(ref add_supplier, add_supplier.Length + 1);
  46. razmer++;
  47. }
  48. else
  49. {
  50. MessageBox.Show("Поле пол должно быть выбрано из списка");
  51. }
  52. dataBase.closeConnection();
  53. }
  54. }
  55. private void button_back_Click(object sender, EventArgs e)
  56. {
  57. this.Hide();
  58. Postavshiki postavshiki = new Postavshiki();
  59. postavshiki.ShowDialog();
  60. }
  61. private void Postavshiki_add_Load(object sender, EventArgs e)
  62. {
  63. // TODO: данная строка кода позволяет загрузить данные в таблицу "vINILDataSet_Pol.Pol". При необходимости она может быть перемещена или удалена.
  64. this.polTableAdapter.Fill(this.vINILDataSet_Pol.Pol);
  65. }
  66. public void global_FormClosed(object sender, EventArgs e)
  67. {
  68. Application.Exit();
  69. }
  70. private void textBox3_KeyPress(object sender, KeyPressEventArgs e)
  71. {
  72. char number = e.KeyChar;
  73. if (!Char.IsDigit(number) && number != 8 && !(e.KeyChar == '+') && !(e.KeyChar == '(') && !(e.KeyChar == ')'))
  74. {
  75. e.Handled = true;
  76. }
  77. }
  78. }
  79. }