Author: Liz Mahoney Version: 1.0.0 (increment the patch/fix version number up if you make more commits past your first submission)
This functionality of a point of sale restaurant system using basic Python tools and understanding of the basics of the language.
A python script
======
- Added categories option for when user inputs a category selection.
- Refactored menu data structure to a dictionaries inside of a list.
- Each function was changed based from the new menu data structure.
This program python script
======
- Addressed and fixed bugs in add and remove methods
- Pytest add & remove methods
======
- Include default and custom menu options
- Create an order class with attributes and methods
======
- Included doc strings in each function
- Implemented a function to compare an input item in the menu list
- Fix string formatting to print the receipt
- Created an order class with respective methods add_item, remove_item, display_order, print_receipt
======
- If the provided separate menu file isn’t a CSV file, alert the user with an appropriate error message. Note: the user should never see an actual Python Exception
- add food items to custom menu
- Address bugs when invalid user input occurs