using Avalonia; using Avalonia.Controls; using Avalonia.Markup.Xaml; using demka2025_sedelnikov.Context; using MsBox.Avalonia; using System; using System.Linq; using System.Text; namespace demka2025_sedelnikov; public partial class AddEditProductWindow : Window { Product currentProduct = new Product(); User8Context context = new User8Context(); // добавление public AddEditProductWindow() { InitializeComponent(); DataContext = currentProduct; ComboPartnerTypes.ItemsSource = context.Producttypes.Select(pt => pt.ProductTypeName).ToList(); ArticulTX.IsEnabled = false; } // редактирование public AddEditProductWindow(Product currentProduct) { InitializeComponent(); this.currentProduct = currentProduct; DataContext = currentProduct; ArticulTX.IsEnabled = false; ComboPartnerTypes.ItemsSource = context.Producttypes.Select(pt => pt.ProductTypeName).ToList(); ComboPartnerTypes.SelectedValue = context.Producttypes.FirstOrDefault(p => p.Id == currentProduct.TypeId); ComboPartnerTypes.SelectedItem = context.Producttypes.FirstOrDefault(p => p.Id == currentProduct.TypeId).ProductTypeName; ComboPartnerTypes.SelectedIndex = context.Producttypes.FirstOrDefault(p => p.Id == currentProduct.TypeId).Id - 1; } private async void Button_Click(object? sender, Avalonia.Interactivity.RoutedEventArgs e) { try { StringBuilder errors = new StringBuilder(); if (!decimal.TryParse(MinCOstTX.Text, out decimal res) && res > 0) errors.AppendLine("Неверно введена минимальная стоимость!"); if (string.IsNullOrEmpty(MinCOstTX.Text) || string.IsNullOrEmpty(NameTX.Text) || ComboPartnerTypes.SelectedIndex == -1) errors.AppendLine("Данные не могут быть пустыми!"); if (errors.Length > 0) { await MessageBoxManager.GetMessageBoxStandard("Ошибка!", $"Произошла ошибка: {errors.ToString()}").ShowWindowDialogAsync(this); return; } if (currentProduct.Id == 0) { currentProduct.Articul = new Random().Next(1, 100000).ToString(); context.Products.Add(currentProduct); context.SaveChanges(); await MessageBoxManager.GetMessageBoxStandard("OK!", $"Продукт был добавлен!").ShowWindowDialogAsync(this); Close(); } else { var edittedProduct = context.Products.FirstOrDefault(p => p.Id == currentProduct.Id); if (edittedProduct != null) { edittedProduct.ProductName = currentProduct.ProductName; edittedProduct.TypeId = ComboPartnerTypes.SelectedIndex + 1; edittedProduct.MinCost = currentProduct.MinCost; } context.SaveChanges(); await MessageBoxManager.GetMessageBoxStandard("OK!", $"Продукт был изменён!").ShowWindowDialogAsync(this); Close(); } } catch (Exception ex) { await MessageBoxManager.GetMessageBoxStandard("Ошибка!", $"Произошла ошибка: {ex.Message}!").ShowWindowDialogAsync(this); return; } } }