Create a simple food delivery service software system that


Create a simple food delivery service software system that manages customer call-in the orders for combo meals via a first/in-first/out method. Your program will allow a food delivery service employee (or user) to enter the key information about a customer's order to generate an order ticket.

The program will include several attributes related to a given order. The system will be managed using a single queue in memory (this can be a global variable). The program must use the "queue" API in the C++ standard template library (STL) and not the "dequeue" API. All of the attributes associated with each order will be stored as a single object within a single queue data structure. The program must implement at least one class that will hold the following variables:

-orderNumber - A string variable to hold an automatically generated order number in the form LLLLNNNN, where L is a character from A to Z, and N is a number from 0 to 9. For example: EHLA2567. The orderNumber is an identifier that is unique for each order and repeats are not allowed.

-comboDescription - A string variable that provides a brief description or name describing the order. Spaces must be allowed.

-firstName - A string variable to hold the first name of the customer who placed the order.

-lastName - A string variable to hold the customer's last name.

-address - A string variable to hold the delivery address (street number and street address) of the order.

-zipCode - An integer variable that holds a 5-digit zip code. The program must re-prompt the user to re-enter the zip code if it is not a 5- digit number.

-milesFromRestaurant - An integer variable that holds the number of miles from the restaurant to the delivery address. The program must not accept orders with a delivery address greater than 15 miles from the restaurant. Return to the main menu without accepting the order in this case.

-orderCost - A double variable that holds the cost of the order. Provide the appropriate accessor methods to set and get the data for each of these class variables. For example setComboDescription(string comboDescription) and getcomboDescription(). In addition, the main program must provide the following functionality:

1. When the program is first started, it must read a data file called orders.dat. The program should not prompt the user for the name of the data file. If the file exists, the program will load the data for each order into the queue data structure. If the file does not exist, the program will start with an empty queue.

2. The program must provide a simple text-based user interface that manages the all of the orders within the queue. This can be similar to the menu found in the Book Inventory example. Each order must be placed in this queue as an object that holds all of the information associated with it. The user interface will allow the user to perform the following operations:

(a) Display Order - displays all of the orders that are in the queue. This feature will display all of the fields associated with the each order in the queue. In addition it must also print the total number of orders in queue along with the total cost for all orders in the queue.

(b) Enter Order - allows the user to enter all of the fields associated with a given order, except for the orderNumber, which will be automatically generated by the program as previously mentioned. After the data fields are entered, the program will place the order object into the queue data structure.

3 (c) Delete Order - allows the user to delete an order from the queue using the orderNumber as the key. The program will display a message if the order is not found in the queue.

(d) Search for Order - allows the user to find an order. The program will prompt the user to enter the orderNumber and will display all of the fields associated with that order if it is found, otherwise the program will display a message if there is not a matching orderNumber in the queue.

(e) Edit Order - allows the user to edit all of the fields for a given order that is in the queue (except for the orderNumber). The program must use the orderNumber as the key to find the specific order to edit. For simplicity, the program may re-prompt the user to reenter all of the fields associated with the given order; but it again must reuse the orderNumber value. Display a message if the order is not found in the queue.

(f) Move Order to Front - sometimes a customer may call back and complain. In option allows the user to move a given order to the front of the queue. Prompt the user to the orderNumber as the key to find the specific order. If the order is found, the program will move it to the front of the queue. If the order is not found display a message.

(g) Exit system - before the program exits, it must save all of the orders in the queue to the data file. I recommend using a standard text file with one field per line. At this point, if the file does not exist, the program will create it.

Request for Solution File

Ask an Expert for Answer!!
C/C++ Programming: Create a simple food delivery service software system that
Reference No:- TGS01288670

Expected delivery within 24 Hours