https://github.com/myturnyet/shopcrafter
https://github.com/myturnyet/shopcrafter
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/myturnyet/shopcrafter
- Owner: MyTurnyet
- Created: 2024-12-11T00:40:57.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-01-17T01:01:12.000Z (3 months ago)
- Last Synced: 2025-02-09T21:22:57.488Z (3 months ago)
- Language: Java
- Size: 105 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://github.com/MyTurnyet/ShopAndLearn/actions/workflows/gradle.yml)
# Shopcrafter
This is a practice application to allow us to work on and discuss the _How_ and the _Why_ of Object Oriented Design### Assumptions
- All Code will have Unit Tests, Integration Tests and Functional Tests as appropriate
- Code will be in a continuous state of refactoring
- Code will be written in Java (although another language may be used for UI, if needed)## Requirements
These are initial requirements and may change as neeed arises.#### Shopping Cart
- Shopping cart will take 0-*N* shopping items
- Shopping Cart will return a detailed receipt with all items listed#### Receipt
- Items will be listed by category
- The receipt will show sub-totals, taxes added, and a total amount
- Any coupons or savings will be shown on the receipt at the bottom, but will be reflected in the totals#### Store Specials
- Store run specials may affect or change pricing of 0-*N* items#### Payments
- Payments will be in US Dollars ($USD), but may someday be in other currencies.
- All pricing will always be in US Dollars ($USD)
- Taxes will be applied to items and will be as follows:
- All goods will be subject to a 10% Tax, except:
- Games
- Food
- Medical Products
- Imported goods will be subject to an additional 5% tax, *no exceptions*
- **Rounding** - all taxes will be rounded to the nearest $0.05### Goods
Each good will have a SKU, Name, Category, and Price.
Some goods will have a Description, or be marked "_imported_".
Books will have an author.#### Initial Goods
These are the initial items that we will have available for the roll out. The prices aren't set in stone yet,
and we haven't come up with the store specials we'll be running.| **SKU** | **Category** | **Name** | **Description** | **Author** | **Price** | **Imported** |
|:-------:|:-------------|:---------------------------------------------------|:------------------------------------------------------------------------------|:----------------|:---------:|:------------:|
| 1023 | Health | Bandages | | | $5.75 | |
| 2367 | Beauty | Perfume | Smells like old lady... | | $15.00 | Yes |
| 3887 | Books | Elegant Objects Book | An object-oriented programming paradigm that renounces traditional techniques | Yegor Bugayenko | $40.00 | |
| 3892 | Books | Refactoring: Improving the Design of Existing Code | A book that every developer should read and own. | Marting Fowler | $32.00 | |
| 4745 | Music | The Corona Virus Hits CD | All the hits from 2019-2023 | | $14.99 | |
| 5291 | Food | Dutch Chocolate | | | $16.85 | Yes |
| 5634 | Food | Chocolates | | | $10.00 | |
| 6002 | Games | Monopoly | | | $12.95 | |
| 6283 | Games | Obscure Japanese Board Game | | | $55.00 | Yes |
| 7528 | Medical | Vitamin A Tables | | | $12.99 | |
| 7588 | Medical | Mouth Retainer | For use in Mouth only! | | $34.78 | |
| 7684 | Medical | Albuterol | | | $134.58 | |
| 7991 | Medical | Di-Hydrogen Monoxide Rinse | A universal dissolver, safe for human consumption in some quantities. | | $2.60 | Yes |