winWriteService.xaml.cs 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. using school.FolderClasses;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Globalization;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Text.RegularExpressions;
  8. using System.Threading.Tasks;
  9. using System.Windows;
  10. using System.Windows.Controls;
  11. using System.Windows.Data;
  12. using System.Windows.Documents;
  13. using System.Windows.Input;
  14. using System.Windows.Media;
  15. using System.Windows.Media.Imaging;
  16. using System.Windows.Shapes;
  17. namespace school
  18. {
  19. /// <summary>
  20. /// Логика взаимодействия для winWriteService.xaml
  21. /// </summary>
  22. public partial class winWriteService : Window
  23. {
  24. Service thisService;
  25. public winWriteService(int idServise)
  26. {
  27. thisService = baseConnect.thisBase.Service.Where(tb => tb.ID == idServise).FirstOrDefault();
  28. InitializeComponent();
  29. init();
  30. }
  31. private void init()
  32. {
  33. List<ClientService> list = baseConnect.thisBase.ClientService.Where(tb => tb.ServiceID == thisService.ID).OrderBy(tb => tb.Client.LastName).ThenBy(tb => tb.Client.FirstName).ThenBy(tb => tb.Client.Patronymic).ToList();
  34. if (list.Count > 0)
  35. {
  36. DGClientService.ItemsSource = list;
  37. TBnoWrites.Visibility = Visibility.Collapsed;
  38. }
  39. else
  40. {
  41. DGClientService.Visibility = Visibility.Collapsed;
  42. TBnoWrites.Visibility = Visibility.Visible;
  43. }
  44. TBName.Text = thisService.Title;
  45. string line = (thisService.Description == null || thisService.Description == "") ? "Описание отсутствует" : thisService.Description.ToString();
  46. TBDescription.Text = line;
  47. TBTime.Text = (thisService.DurationInSeconds / 60).ToString() + " мин.";
  48. TBOldPrice.Visibility = thisService.discountVisible;
  49. TBOldPrice.Text = thisService.oldPrice;
  50. TBPrice.Text = Convert.ToInt32(thisService.Cost) + " рублей";
  51. if (dataAdminRoot.adminRoot == ("0000").GetHashCode())
  52. {
  53. TBHeader.Text = "Просмотр услуги";
  54. BtnWrite.Content = "Проверить";
  55. }
  56. else
  57. {
  58. GInfo.Visibility = Visibility.Collapsed;
  59. }
  60. }
  61. private bool check()
  62. {
  63. try
  64. {
  65. bool flag = true;
  66. string mess = "";
  67. Regex reg_time = new Regex("^[0-2][0-9]:[0-6][0-9]$");
  68. if (!reg_time.IsMatch(TBTimeServ.Text))//проверка корректности времени
  69. {
  70. flag = false;
  71. mess += "Формат введенного времени не совпадает\n";
  72. }
  73. if (DPDate.SelectedDate <= DateTime.Today)//проверка даты на корректность
  74. {
  75. flag = false;
  76. mess += "Выбранная дата не подходит для записи, выберите дату, например, завтра или позднее";
  77. }
  78. if (flag)
  79. {
  80. List<ClientService> list = baseConnect.thisBase.ClientService.Where(tb => tb.ServiceID == thisService.ID).ToList();//все записи на услугу
  81. DateTime thisTime = (DateTime)DPDate.SelectedDate;//начало услуги
  82. thisTime = thisTime.AddHours(Convert.ToDouble(TBTimeServ.Text.Split(':')[0])).AddMinutes(Convert.ToDouble(TBTimeServ.Text.Split(':')[1]));
  83. DateTime endThisTime = thisTime.AddHours(thisService.DurationInSeconds / 3600).AddMinutes(thisService.DurationInSeconds %3600);//конец услуги
  84. foreach (ClientService service in list)//проверка на время
  85. {
  86. DateTime start = service.StartTime;
  87. DateTime end = service.StartTime.AddHours(thisService.DurationInSeconds / 3600).AddMinutes(thisService.DurationInSeconds % 3600);
  88. if (start == thisTime || thisTime == end || (thisTime < start && endThisTime > start) || (end > thisTime && start < thisTime))
  89. flag = false;
  90. }
  91. if (!flag) mess += "Выбранное время недоступно";
  92. }
  93. if (mess != "") MessageBox.Show(mess);
  94. return flag;
  95. }
  96. catch
  97. {
  98. MessageBox.Show("Возникли ошибки при проверке данных");
  99. return false;
  100. }
  101. }
  102. private void BtnWriteClick(object sender, RoutedEventArgs e)
  103. {
  104. if (check())
  105. {
  106. if (dataAdminRoot.adminRoot == ("0000").GetHashCode())//проверка работы
  107. {
  108. MessageBox.Show("Запись корректна");
  109. }
  110. else
  111. {
  112. try
  113. {
  114. DateTime thisTime = (DateTime)DPDate.SelectedDate;//начало услуги
  115. thisTime = thisTime.AddHours(Convert.ToDouble(TBTimeServ.Text.Split(':')[0])).AddMinutes(Convert.ToDouble(TBTimeServ.Text.Split(':')[1]));
  116. ClientService cs = new ClientService()
  117. {
  118. ClientID = dataUser.user.ID,
  119. ServiceID = thisService.ID,
  120. StartTime = thisTime
  121. };
  122. baseConnect.thisBase.ClientService.Add(cs);
  123. baseConnect.thisBase.SaveChanges();
  124. this.Close();
  125. MessageBox.Show("Вы успешно добавлены на услугу");
  126. }
  127. catch
  128. {
  129. MessageBox.Show("Возникла ошибка");
  130. }
  131. }
  132. }
  133. }
  134. private void TBTimeServTextChanged(object sender, TextChangedEventArgs e)
  135. {
  136. try
  137. {
  138. string line = TBTimeServ.Text;
  139. int lenght = line.Length;
  140. switch (lenght)
  141. {
  142. case 0:
  143. {
  144. break;
  145. }
  146. case 1:
  147. {
  148. Regex n = new Regex(@"^[0-2]$");
  149. if (!n.IsMatch(line))
  150. {
  151. line = "";
  152. }
  153. break;
  154. }
  155. case 2:
  156. {
  157. Regex n = new Regex(@"^[0-2][0-9]$");
  158. if (!n.IsMatch(line))
  159. {
  160. int num = Convert.ToInt32(line);
  161. if (num > 23 || num < 8) line = line.Substring(0, line.Length - 1);
  162. }
  163. else line += ":";
  164. break;
  165. }
  166. case 4:
  167. {
  168. Regex n = new Regex(@"^[0-2][0-9]:[0-6]$");
  169. if (!n.IsMatch(line))
  170. {
  171. int num = Convert.ToInt32(line);
  172. if (num > 23 || num < 8) line = line.Substring(0, line.Length - 1);
  173. }
  174. break;
  175. }
  176. case 5:
  177. {
  178. Regex n = new Regex(@"^[0-2][0-9]:[0-6][0-9]$");
  179. if (!n.IsMatch(line))
  180. {
  181. int num = Convert.ToInt32(line.Split(':')[0]);
  182. int num2 = Convert.ToInt32(line.Split(':')[1]);
  183. if (num > 23 || num < 8 || num2 > 60) line = line.Substring(0, line.Length - 1);
  184. }
  185. else
  186. {
  187. DateTime thisTime = (DateTime)DPDate.SelectedDate;//начало услуги
  188. thisTime = thisTime.AddHours(Convert.ToDouble(TBTimeServ.Text.Split(':')[0])).AddMinutes(Convert.ToDouble(TBTimeServ.Text.Split(':')[1]));
  189. DateTime endThisTime = thisTime.AddHours(thisService.DurationInSeconds / 3600).AddMinutes(thisService.DurationInSeconds % 3600);//конец услуги
  190. TBEndTime.Text = "Время окончания " + endThisTime.ToString("dd MMMM yyyy HH:mm");
  191. }
  192. break;
  193. }
  194. default:
  195. {
  196. line = line.Substring(0, line.Length - 1);
  197. break;
  198. }
  199. }
  200. if (lenght != 3) TBTimeServ.Text = line;
  201. }
  202. catch
  203. {
  204. MessageBox.Show("Ошибка ввода");
  205. }
  206. }
  207. }
  208. }