using Caliburn.Micro; using RMWPFInterfaceLibrary.Api; using RMWPFInterfaceLibrary.Helpers; using RMWPFInterfaceLibrary.Models; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RMWPFUserInterface.ViewModels { public class SalesViewModel : Screen { IProductEndPoint _productEndPoint; IConfigHelper _configHelper; public SalesViewModel(IProductEndPoint productEndPoint, IConfigHelper configHelper) { _productEndPoint = productEndPoint; _configHelper = configHelper; } protected override async void OnViewLoaded(object view) { base.OnViewLoaded(view); await LoadProducts(); } private async Task LoadProducts() { var prods = await _productEndPoint.GetAll(); Products = new BindingList(prods); } private BindingList _products; public BindingList Products { get { return _products; } set { _products = value; NotifyOfPropertyChange(() => Products); } } private ProductModel _selectedProduct; public ProductModel SelectedProduct { get { return _selectedProduct; } set { _selectedProduct = value; NotifyOfPropertyChange(() => SelectedProduct); NotifyOfPropertyChange(() => CanAddToCart); } } private BindingList _cart = new BindingList(); public BindingList Cart { get { return _cart; } set { _cart = value; NotifyOfPropertyChange(() => Cart); } } private int _itemQuantity = 1; public int ItemQuantity { get { return _itemQuantity; } set { _itemQuantity = value; NotifyOfPropertyChange(() => ItemQuantity); NotifyOfPropertyChange(() => CanAddToCart); } } public string SubTotal { get { return CalculateSubTotal().ToString("C"); } } private decimal CalculateSubTotal() { decimal subTotal = 0; foreach (var item in Cart) { subTotal += item.Product.RetailPrice * item.QuantityInCart; } return subTotal; } public string Tax { get { return CalculateTax().ToString("C"); } } private decimal CalculateTax() { decimal taxAmount = 0; decimal TaxRate = _configHelper.GetTaxRate()/100; taxAmount = Cart .Where(x => x.Product.IsTaxable) .Sum(x => x.Product.RetailPrice * x.QuantityInCart * TaxRate); return taxAmount; } public string Total { get { decimal total = CalculateSubTotal() + CalculateTax(); return total.ToString("C"); } } public bool CanAddToCart { get { bool output = false; if (ItemQuantity > 0 && SelectedProduct?.QuantityInStock >= ItemQuantity) { output = true; } return output; } } public void AddToCart() { CartItemModel existingItem = Cart.FirstOrDefault(x => x.Product == SelectedProduct); if (existingItem != null) { existingItem.QuantityInCart += ItemQuantity; } else { CartItemModel item = new CartItemModel { Product = SelectedProduct, QuantityInCart = ItemQuantity }; Cart.Add(item); } SelectedProduct.QuantityInStock -= ItemQuantity; ItemQuantity = 1; NotifyOfPropertyChange(() => SubTotal); NotifyOfPropertyChange(() => Tax); NotifyOfPropertyChange(() => Total); Cart.ResetBindings(); } public bool CanRemoveFromCart { get { bool output = false; // Make sure something is selected return output; } } public void RemoveFromCart() { NotifyOfPropertyChange(() => SubTotal); NotifyOfPropertyChange(() => Tax); NotifyOfPropertyChange(() => Total); } public bool CanCheckOut { get { bool output = false; // Make sure there is something in the cart return output; } } public void CheckOut() { } } }