MainWindow.xaml.cs 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows;
  7. using System.Windows.Controls;
  8. using System.Windows.Data;
  9. using System.Windows.Documents;
  10. using System.Windows.Input;
  11. using System.Windows.Media;
  12. using System.Windows.Media.Imaging;
  13. using System.Windows.Navigation;
  14. using System.Windows.Shapes;
  15. using word = Microsoft.Office.Interop.Word;
  16. namespace MassageSalon
  17. {
  18. public partial class MainWindow : Window
  19. {
  20. private const decimal PriceNeckZone = 600m;
  21. private const decimal PriceAntiCellulite = 950m;
  22. private const decimal PriceRelaxingMassage = 400m;
  23. // Объявляем переменные как поля класса
  24. private decimal sumAccepted;
  25. private decimal totalCost;
  26. private decimal change;
  27. private decimal discount;
  28. public MainWindow()
  29. {
  30. InitializeComponent();
  31. }
  32. private void Rasschet_Click(object sender, RoutedEventArgs e)
  33. {
  34. try
  35. {
  36. // Считываем сумму, введенную пользователем
  37. sumAccepted = decimal.Parse(SummOkayBox.Text);
  38. // Считываем скидку, введенную пользователем
  39. discount = decimal.Parse(SkidkaBox.Text);
  40. // Рассчитываем общую стоимость
  41. totalCost = 0;
  42. if (Check1.IsChecked == true) // Воротниковая зона
  43. {
  44. totalCost += PriceNeckZone;
  45. }
  46. if (Check2.IsChecked == true) // Антицеллюлитный массаж
  47. {
  48. totalCost += PriceAntiCellulite;
  49. }
  50. if (Check3.IsChecked == true) // Расслабляющий массаж
  51. {
  52. totalCost += PriceRelaxingMassage;
  53. }
  54. // Применяем скидку
  55. totalCost -= totalCost * (discount / 100);
  56. // Выводим итоговую стоимость
  57. ItogoBox.Text = totalCost.ToString("F2");
  58. // Рассчитываем сдачу
  59. change = sumAccepted - totalCost;
  60. if (change < 0)
  61. {
  62. MessageBox.Show("Сумма, переданная клиентом, недостаточна для оплаты.");
  63. return;
  64. }
  65. // Выводим сдачу
  66. MessageBox.Show($"Сдача клиенту: {change:F2} руб.");
  67. // Устанавливаем признак, что услуга была получена
  68. if (Check1.IsChecked == true) Check1.Content += " (Получена)";
  69. if (Check2.IsChecked == true) Check2.Content += " (Получена)";
  70. if (Check3.IsChecked == true) Check3.Content += " (Получена)";
  71. }
  72. catch (FormatException)
  73. {
  74. MessageBox.Show("Пожалуйста, введите корректные числовые значения для суммы и скидки.");
  75. }
  76. catch (Exception ex)
  77. {
  78. MessageBox.Show($"Произошла ошибка: {ex.Message}");
  79. }
  80. }
  81. public void Button_Click(object sender, RoutedEventArgs e)
  82. {
  83. string date = DateTime.Now.ToShortDateString();
  84. word.Document document = null;
  85. word.Application app = new word.Application();
  86. string putword = Environment.CurrentDirectory + @"/Check.docx";
  87. document = app.Documents.Add(putword);
  88. document.Activate();
  89. word.Bookmarks bookm = document.Bookmarks;
  90. word.Range range;
  91. // Заполняем данные для чека
  92. string[] data = new string[7]
  93. {
  94. sumAccepted.ToString("F2"),
  95. date,
  96. totalCost.ToString("F2"),
  97. change.ToString("F2"),
  98. discount.ToString("F2"),
  99. PriceNeckZone.ToString() + " руб.",
  100. "1"
  101. };
  102. int i = 0;
  103. foreach (word.Bookmark mark in bookm)
  104. {
  105. range = mark.Range;
  106. range.Text = data[i];
  107. i++;
  108. }
  109. // Сохраняем документ
  110. string filePath = System.IO.Path.Combine(Environment.CurrentDirectory, "Чек.docx");
  111. document.SaveAs2(filePath, word.WdSaveFormat.wdFormatXMLDocument); // Указываем формат .docx
  112. MessageBox.Show("Чек сохранен по пути: " + filePath);
  113. // Закрываем документ и приложение
  114. document.Close();
  115. app.Quit();
  116. }
  117. private void Check1_Checked(object sender, RoutedEventArgs e)
  118. {
  119. }
  120. }
  121. }