Skip to content

Fast Food Ordering System is an assignment project which I'm currently working on for learning purposes.

License

Notifications You must be signed in to change notification settings

osusara/FastFood_Ordering_System

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fast Food Ordering System

Fast Food Ordering System is an assignment project which I'm currently working on for learning per purposes.

This is a desktop application which developed using Java and Swing for the GUI. Speciality is this system has advanced user interface and user expirience. As well as advanced data validations.

How the system works?

I designed this system for two types of users (Manager and Cashier). Both have different permisions within the system. At the login page the system recognize the user whether a Manager or a Cashier. Only the Managers can register new users. Both users can take orders.

Database structure

Used MySQL to create the database and normalized as much as possible. There are 10 tables. They are,

  1. login (user_id (PK), username, password, type, status) //type means manager or cashier, status means active or not
  2. user (user_id (FK), name, gender, dob (date of birth), phone, email, address)
  3. customer (customer_id (PK), name, phone, email)
  4. order (order_id (PK), date, total, recived, balance, user_id (FK), customer_id (FK))
  5. meal (meal_id (PK), name, unit_price) // Casual meals
  6. drink (drink_id (PK), name, unit_price) // drinks
  7. dessert (desser_id (PK), name, unit_price) // desserts
  8. order_has_meal (order_id (FK), meal_id (FK), qty)
  9. order_has_drink (order_id (FK), drink_id (FK), qty)
  10. order_has_dessert (order_id (FK), dessert_id (FK), qty)

The Fas Food Ordering System is still under constructions. Hope to release the final product soon.

About

Fast Food Ordering System is an assignment project which I'm currently working on for learning purposes.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages