Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time

Sandwich Ordering Service

In this project you will be developing a piece of software that allows people working in an office to place daily sandwich orders that will be delivered direct to their office.


Testing

You are required to create the following accounts to allow the system to be tested. All accounts should have the password p455w0rd:

  1. customer1
  2. customer2
  3. customer3
  4. owner

Stage 1

You need to build a simple ordering system.

Part 1

Each customer can log in and set up a profile which includes:

  1. Their first and last name.
  2. The name of the company where they work.
  3. The address including the postcode of the company.

Part 2

  1. When a customer logs in before 11:00 they can pick from a range of sandwiches, crisps and drinks and add them to their lunch order for the day. When the order is complete they are given a 10 character order number.

Part 3

When the owner logs in after 11:00 they can see a list of the items ordered grouped by postcode and including for each customer:

  1. The customer name.
  2. The name of the company.
  3. The address of the company.
  4. The 10 character order number.

Stage 2

This builds on the work you have already completed and adds additional functionality.

  1. When the owner sees the daily orders they can see an overall pick list for each product showing how many are needed to complete the daily order.
  2. When the customer places their order they receive an email confirmation that includes:
    1. A list of the items ordered including individual item prices.
    2. A total price.
    3. The 10 character order number.
    4. A QR Code of this 10 character order number.
  3. The owner sees the list of deliveries and next to each delivery there is:
    1. The 10 character order number.
    2. A button labelled Delivered which is clicked to flag that the items were delivered to the customer.
    3. A button to go to a screen that displays the order details including the QR code representing the 10 character order number.