Files
point_of_sale_v2/PointOfSale/Pos.Ui/Pos/Setting/SettingWindow.xaml.cs
2026-07-30 10:23:27 +02:00

63 lines
1.8 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
using Pos.Category;
using Pos.Service;
using Pos.Setting.ProductGroup;
namespace Pos.Setting
{
/// <summary>
/// Interaction logic for SettingWindow.xaml
/// </summary>
public partial class SettingWindow : Window
{
private readonly ProductGroupService _productGroupService =
new ProductGroupService();
public SettingWindow()
{
InitializeComponent();
}
private void btnClerks_Click(object sender, RoutedEventArgs e)
{
EmployeeWindow employeeWindow = new EmployeeWindow();
employeeWindow.Show();
}
private void btnCategories_Click(object sender, RoutedEventArgs e)
{
ProductGroupWindow productGroupWindow = new ProductGroupWindow();
productGroupWindow.Show();
}
private void btnProductGroups_Click(object sender, RoutedEventArgs e)
{
//Check if there is any categories, if not close this window with a message.
bool anyExist = _productGroupService.HasProductGroups();
if (!anyExist)
{
MessageBox.Show("Der er ingen kategorier, opret dem først", "Kategorier", MessageBoxButton.OK,
MessageBoxImage.Warning);
}
else
{
ProductWindow productWindow = new ProductWindow();
productWindow.Show();
}
}
}
}