Table of Contents
The project is simulating the experience of online shopping, an Electronics online shop with multiple products from different categories. You Can:
- Fill your cart with products
- Place an order to your address, even if you are not registered
- You will have discounts on buying even number of products
You may check the word document (Requirements.docx) for more information
We have the Category table that contains 3 main categories (TVs, Laptops and Sound Systems). The products are categorized by a one-to-many relationship between Category and Product tables.
The Product table has the information and price for each product, also the discount that will be applied (if the customer bought doubles of the same product).
And finally we have the Order header and lines tables, that refelcts the order placed by the customer with summing the quantities and total price for the order.
- Adminstrators can manage categories and products only
- Registered and un-registered Customers can start shopping, adding products to the cart and then place the order for shipping
- Discounts applied when adding the products to the cart.
- Discount Formula >> Amount to be cut from the total = (Item Qty X Item Unit Price X Discount %)
Mohamed El Ghandour - m.el_ghandour@hotmail.com
Project Link: (https://github.com/MGhandour92/EShop-Task-LDev)