AddPage.xaml.cs 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  1. using Microsoft.Win32;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.IO;
  5. using System.Linq;
  6. using System.Runtime.ConstrainedExecution;
  7. using System.Text;
  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.Navigation;
  17. using System.Windows.Shapes;
  18. using static System.Net.Mime.MediaTypeNames;
  19. namespace School
  20. {
  21. /// <summary>
  22. /// Логика взаимодействия для AddPage.xaml
  23. /// </summary>
  24. public partial class AddPage : Page
  25. {
  26. string path;
  27. bool flagUpdate;
  28. Service service;
  29. public AddPage()
  30. {
  31. InitializeComponent();
  32. Title.Text = "Добавление услуги";
  33. service = new Service();
  34. AddPhotos.Visibility = Visibility.Collapsed;
  35. }
  36. public AddPage(Service service)
  37. {
  38. InitializeComponent();
  39. flagUpdate = true;
  40. Title.Text = "Изменение услуги";
  41. this.service = service;
  42. IdService.Visibility = Visibility.Visible;
  43. IdService.Text = service.ID.ToString();
  44. NameServices.Text = service.Title;
  45. Description.Text = service.Description;
  46. PriceServices.Text = Math.Round(service.Cost, 0).ToString();
  47. TimeServices.Text = service.time.ToString();
  48. if (service.Discount == null)
  49. {
  50. Sale.Text = "0";
  51. }
  52. else
  53. {
  54. Sale.Text = (service.Discount * 100).ToString();
  55. }
  56. path = service.MainImagePath;
  57. ImageService.Source = new BitmapImage(new Uri(path, UriKind.Relative));
  58. UpdatePhoto.Visibility = Visibility.Visible;
  59. IdService.Visibility = Visibility.Visible;
  60. }
  61. public bool NameService(string title)
  62. {
  63. List<Service> servers = DBase.DB.Service.Where(x => x.Title == title).ToList();
  64. if (servers.Count > 0)
  65. {
  66. MessageBox.Show("Данная услуга уже существует", "Ошибка", MessageBoxButton.OK);
  67. return false;
  68. }
  69. else
  70. {
  71. return true;
  72. }
  73. }
  74. public bool SaleService(string discount)
  75. {
  76. try
  77. {
  78. int price = Convert.ToInt32(discount);
  79. return true;
  80. }
  81. catch
  82. {
  83. MessageBox.Show("Укажите значение скидки цифрами", "Ошибка", MessageBoxButton.OK);
  84. return false;
  85. }
  86. }
  87. public bool PriceService(string cost)
  88. {
  89. try
  90. {
  91. int price = Convert.ToInt32(cost);
  92. return true;
  93. }
  94. catch
  95. {
  96. MessageBox.Show("Укажите значение цены цифрами", "Ошибка", MessageBoxButton.OK);
  97. return false;
  98. }
  99. }
  100. public bool TimeService(string timeLesson)
  101. {
  102. try
  103. {
  104. int time = Convert.ToInt32(timeLesson);
  105. if ((time > 0) && (time <= 240))
  106. {
  107. return true;
  108. }
  109. else
  110. {
  111. MessageBox.Show("Время не должно быть отрицательным или превышать 4 часа", "Ошибка", MessageBoxButton.OK);
  112. return false;
  113. }
  114. }
  115. catch
  116. {
  117. MessageBox.Show("Укажите значение времени в цифрах", "Ошибка", MessageBoxButton.OK);
  118. return false;
  119. }
  120. }
  121. private void AddPhoto_Click(object sender, RoutedEventArgs e)
  122. {
  123. try
  124. {
  125. OpenFileDialog ofd = new OpenFileDialog();
  126. ofd.InitialDirectory = Environment.CurrentDirectory.Substring(0, Environment.CurrentDirectory.Length - 9) + "image\\";
  127. ofd.ShowDialog();
  128. string[] array = ofd.FileName.Split('\\');
  129. if (array.Length != 1)
  130. {
  131. path = "\\" + array[array.Length - 2] + "\\" + array[array.Length - 1];
  132. ImageService.Source = new BitmapImage(new Uri(path, UriKind.Relative));
  133. }
  134. }
  135. catch
  136. {
  137. MessageBox.Show("Что-то пошло не так", "Ошибка", MessageBoxButton.OK);
  138. }
  139. }
  140. int n = 0;
  141. private void UpdatePhoto_Click(object sender, RoutedEventArgs e)
  142. {
  143. List<ServicePhoto> servicePhoto = DBase.DB.ServicePhoto.Where(x => x.ServiceID == service.ID).ToList();
  144. if (servicePhoto.Count >= 1)
  145. {
  146. BitmapImage img = new BitmapImage(new Uri(servicePhoto[n].PhotoPath, UriKind.RelativeOrAbsolute));
  147. ImageService.Source = img;
  148. AddPhoto.Visibility = Visibility.Collapsed;
  149. UpdatePhoto.Visibility = Visibility.Collapsed;
  150. AddPhotos.Visibility = Visibility.Collapsed;
  151. SavePhoto.Visibility = Visibility.Visible;
  152. DeletPhoto.Visibility = Visibility.Visible;
  153. Back.Visibility = Visibility.Visible;
  154. Next.Visibility = Visibility.Visible;
  155. }
  156. else
  157. {
  158. MessageBox.Show("Дополнительные фотографии еще не добавлены", "Ошибка", MessageBoxButton.OK);
  159. }
  160. }
  161. private void Next_Click(object sender, RoutedEventArgs e)
  162. {
  163. List<ServicePhoto> servicePhoto = DBase.DB.ServicePhoto.Where(x => x.ServiceID == service.ID).ToList();
  164. n++;
  165. if (servicePhoto == null)
  166. {
  167. Next.IsEnabled = false;
  168. }
  169. else if(servicePhoto.Count == n) // если n достигла количества фотографий в листе, то дальше листать запрещено
  170. {
  171. Next.IsEnabled = false;
  172. Back.IsEnabled = true;
  173. }
  174. else // если объект не пустой, начинает переводить байтовый массив в изображение
  175. {
  176. BitmapImage img = new BitmapImage(new Uri(servicePhoto[n].PhotoPath, UriKind.RelativeOrAbsolute));
  177. ImageService.Source = img;
  178. }
  179. }
  180. private void Back_Click(object sender, RoutedEventArgs e)
  181. {
  182. List<ServicePhoto> photo = DBase.DB.ServicePhoto.Where(x => x.ServiceID == service.ID).ToList();
  183. n--;
  184. if (photo == null)
  185. {
  186. Back.IsEnabled = false;
  187. }
  188. else if(n<0) // если n достигла первой фотографий в листе, то дальше листать запрещено
  189. {
  190. Back.IsEnabled = false;
  191. Next.IsEnabled = true;
  192. }
  193. else // если объект не пустой, начинает переводить байтовый массив в изображение
  194. {
  195. BitmapImage img = new BitmapImage(new Uri(photo[n].PhotoPath, UriKind.RelativeOrAbsolute));
  196. ImageService.Source = img;
  197. }
  198. }
  199. private void SavePhoto_Click(object sender, RoutedEventArgs e)
  200. {
  201. List<ServicePhoto> photo = DBase.DB.ServicePhoto.Where(x => x.ServiceID == service.ID).ToList();
  202. service.MainImagePath = photo[n].PhotoPath;
  203. DBase.DB.SaveChanges();
  204. MessageBox.Show("Фотография изменена");
  205. SavePhoto.Visibility = Visibility.Collapsed;
  206. AddPhoto.Visibility = Visibility.Visible;
  207. UpdatePhoto.Visibility = Visibility.Visible;
  208. AddPhotos.Visibility = Visibility.Visible;
  209. DeletPhoto.Visibility = Visibility.Collapsed;
  210. Back.Visibility = Visibility.Collapsed;
  211. Next.Visibility = Visibility.Collapsed;
  212. ClassFrame.newFrame.Navigate(new PageListOfService());
  213. }
  214. private void AddPhotos_Click(object sender, RoutedEventArgs e)
  215. {
  216. try
  217. {
  218. OpenFileDialog ofd = new OpenFileDialog();
  219. ofd.Multiselect = true;
  220. if ((bool)ofd.ShowDialog())
  221. {
  222. foreach (string path in ofd.FileNames)
  223. {
  224. string[] array = path.Split('\\');
  225. try
  226. {
  227. File.Copy(path, Environment.CurrentDirectory.Substring(0, Environment.CurrentDirectory.Length - 9) + "image\\" + array[array.Length - 1]);
  228. }
  229. catch
  230. {
  231. }
  232. ServicePhoto photo = new ServicePhoto()
  233. {
  234. ServiceID = service.ID,
  235. PhotoPath = "\\image\\" + array[array.Length - 1]
  236. };
  237. DBase.DB.ServicePhoto.Add(photo);
  238. }
  239. DBase.DB.SaveChanges();
  240. MessageBox.Show("Фото успешно добавлены", "Услуги", MessageBoxButton.OK, MessageBoxImage.Information);
  241. }
  242. }
  243. catch
  244. {
  245. MessageBox.Show("Что-то пошло не так. Часть файлов не удалось загрузить", "Услуги", MessageBoxButton.OK, MessageBoxImage.Information);
  246. }
  247. }
  248. private void DeletPhoto_Click(object sender, RoutedEventArgs e)
  249. {
  250. List<ServicePhoto> photos = DBase.DB.ServicePhoto.Where(x => x.ServiceID == service.ID).ToList();
  251. if (photos[n].PhotoPath != service.MainImagePath)
  252. {
  253. ServicePhoto photo = photos.FirstOrDefault(x => x.PhotoPath == photos[n].PhotoPath);
  254. DBase.DB.ServicePhoto.Remove(photo);
  255. DBase.DB.SaveChanges();
  256. ClassFrame.newFrame.Navigate(new AddPage(service));
  257. }
  258. else
  259. {
  260. MessageBox.Show("Выбранное фото нельзя удалить", "Ошибка", MessageBoxButton.OK);
  261. }
  262. }
  263. private void Add_Click(object sender, RoutedEventArgs e)
  264. {
  265. if(NameServices.Text == "" || PriceServices.Text == "" || TimeServices.Text == "")
  266. {
  267. MessageBox.Show("Обязательные поля не могут быть пустыми");
  268. return;
  269. }
  270. try
  271. {
  272. if (NameService(NameServices.Text))
  273. {
  274. if (TimeService(TimeServices.Text))
  275. {
  276. if (PriceService(PriceServices.Text))
  277. {
  278. if (SaleService(Sale.Text))
  279. {
  280. double? discount;
  281. if (Sale.Text == "" || Convert.ToInt32(Sale.Text) == 0)
  282. {
  283. discount = null;
  284. }
  285. else
  286. {
  287. discount = Convert.ToInt32(Sale.Text) / 100.0;
  288. }
  289. service.Title = NameServices.Text;
  290. service.Cost = Convert.ToDecimal(PriceServices.Text);
  291. service.DurationInSeconds = Convert.ToInt32(TimeServices.Text) * 60;
  292. service.Description = Description.Text;
  293. service.Discount = discount;
  294. service.MainImagePath = path;
  295. if (flagUpdate == false)
  296. {
  297. DBase.DB.Service.Add(service);
  298. DBase.DB.SaveChanges();
  299. MessageBox.Show("Услуга успешно добавлена", "Услуги", MessageBoxButton.OK, MessageBoxImage.Information);
  300. ClassFrame.newFrame.Navigate(new HomePage());
  301. }
  302. else
  303. {
  304. DBase.DB.SaveChanges();
  305. MessageBox.Show("Услуга успешно изменена", "Услуги", MessageBoxButton.OK, MessageBoxImage.Information);
  306. ClassFrame.newFrame.Navigate(new HomePage());
  307. }
  308. }
  309. }
  310. }
  311. }
  312. }
  313. catch
  314. {
  315. MessageBox.Show("Не удалось добавить запись. Проверьте заполненнеы поля");
  316. }
  317. }
  318. private void Home_Click(object sender, RoutedEventArgs e)
  319. {
  320. ClassFrame.newFrame.Navigate(new HomePage("0000"));
  321. }
  322. }
  323. }