PageAddNote.xaml.cs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Text.RegularExpressions;
  6. using System.Threading.Tasks;
  7. using System.Windows;
  8. using System.Windows.Controls;
  9. using System.Windows.Data;
  10. using System.Windows.Documents;
  11. using System.Windows.Input;
  12. using System.Windows.Media;
  13. using System.Windows.Media.Imaging;
  14. using System.Windows.Navigation;
  15. using System.Windows.Shapes;
  16. namespace School
  17. {
  18. /// <summary>
  19. /// Логика взаимодействия для PageAddNote.xaml
  20. /// </summary>
  21. public partial class PageAddNote : Page
  22. {
  23. Service service;
  24. public PageAddNote(Service service)
  25. {
  26. InitializeComponent();
  27. this.service = service;
  28. Title.Text = "Название услуги: " + service.Title + " | " + "Длительность услуги: " + service.time + " минут";
  29. FullName.ItemsSource = DBase.DB.Client.ToList();
  30. FullName.SelectedValuePath = "ID";
  31. FullName.DisplayMemberPath = "FullName";
  32. }
  33. private void Home_Click(object sender, RoutedEventArgs e)
  34. {
  35. ClassFrame.newFrame.Navigate(new HomePage("0000"));
  36. }
  37. private void Add_Click(object sender, RoutedEventArgs e)
  38. {
  39. if (CheckData())
  40. {
  41. DateTime dt = (DateTime)Date.SelectedDate;
  42. dt = dt.AddHours(Convert.ToInt32(TimeStart.Text.Substring(0, 2)));
  43. dt = dt.AddMinutes(Convert.ToInt32(TimeStart.Text.Substring(3, 2)));
  44. string text;
  45. if (Comment.Text == "")
  46. {
  47. text = null;
  48. }
  49. else
  50. {
  51. text = Comment.Text;
  52. }
  53. ClientService client = new ClientService()
  54. {
  55. ClientID = (int)FullName.SelectedValue,
  56. ServiceID = service.ID,
  57. StartTime = dt,
  58. Comment = text
  59. };
  60. DBase.DB.ClientService.Add(client);
  61. DBase.DB.SaveChanges();
  62. MessageBox.Show("Клиент успешно записан", "Запись на услугу", MessageBoxButton.OK, MessageBoxImage.Information);
  63. }
  64. }
  65. private bool CheckData()
  66. {
  67. if (FullName.SelectedIndex == -1)
  68. {
  69. MessageBox.Show("Выберите клиента", "Запись на услугу", MessageBoxButton.OK, MessageBoxImage.Information);
  70. return false;
  71. }
  72. else if (Date.SelectedDate == null)
  73. {
  74. MessageBox.Show("Выберите дату", "Запись на услугу", MessageBoxButton.OK, MessageBoxImage.Information);
  75. return false;
  76. }
  77. else if (!Regex.IsMatch(TimeStart.Text, @"^[0-9]{2}:[0-9]{2}$"))
  78. {
  79. MessageBox.Show("Введите время корректно", "Запись на услугу", MessageBoxButton.OK, MessageBoxImage.Information);
  80. return false;
  81. }
  82. return true;
  83. }
  84. private void TimeStart_TextChanged(object sender, TextChangedEventArgs e)
  85. {
  86. if (Regex.IsMatch(TimeStart.Text, @"^[0-9]{2}:[0-9]{2}$"))
  87. {
  88. int hours = Convert.ToInt32(TimeStart.Text.Substring(0, 2));
  89. int minutes = Convert.ToInt32(TimeStart.Text.Substring(3, 2));
  90. if (hours < 24 && minutes < 60)
  91. {
  92. int timeEnd = hours * 60 + minutes + service.time;
  93. TimeEnd.Text = timeEnd / 60 + ":" + timeEnd % 60;
  94. }
  95. else
  96. {
  97. MessageBox.Show("Введите время корректно", "Запись на услугу", MessageBoxButton.OK, MessageBoxImage.Information);
  98. }
  99. }
  100. else
  101. {
  102. TimeEnd.Text = "";
  103. }
  104. }
  105. }
  106. }