Internal code: MAS3654
Engineering Assignment Help
You are required to implement a financial app for Macquarie Financial Group to generate a quarterly summary report. Since it is a prototype model for the first quarter, you are required to implement the app for sales from January-March.
Components of different screens:
Welcome screen - components:
- Welcome message.
- A small image must also be displayed on the screen.
- Below the image, there has to be a button, that when clicked, takes you to the next screen
Screen 1: Sales in January - components:
- Screen heading: January
- User Input: User enters the amount. Entry must accept decimal values
- Tax: Tax is 7% of user input
- Costs: Costs are 3% of user input
- Balance: User Input - Tax- Costs
- Customized button that has the value “Click here for February”, that when clicked, takes you to the next screen
Screen 2: Sales in February-components:
- Screen heading: February
- Previous Month Balance: Balance from January
- User Input: User enters the amount. Entry must accept decimal values
- Tax: Tax is 6% of user input
- Costs: Costs are 4% of user input
- Balance: User Input - Tax- Costs
Customized button that has the value “Click here for March”, that when clicked, takes you to the next screen
Screen 3: Sales in March-components:
- Screen heading: March
- Previous Month Balance: Balance from February
- User Input: User enters the amount. Entry must accept decimal values
- Tax: Tax is 8% of user input
- Costs: Costs are 2% of user input
- Balance: User Input - Tax- Costs
- Customized button that has the value “Click here for Summary”, that when clicked, takes you to the next screen
In Screen 2 and 3, you will have to display not just previous month balance, but also
the cumulative balance thus far. You will have to change the design to include that. Also, the
final results must be rounded off to two decimal places.