nss-evening-cohort-12 / nutshell-elk

Renaissance Faire
0 stars 3 forks source link

# Display Show Reporting #108

Open MarkyAaronYoung opened 4 years ago

MarkyAaronYoung commented 4 years ago

User

As a user, when I click on an event's financial reporting page, I should be able to see the total costs of a specific component.

AC

When a user is authenticated And on an events page's financial reporting page Then they should be able to see a breakdown of total costs by a specific component (such as shows)

Dev Notes

getAllShowsByEventId(eventId) .then((eventWithShows) => { const ShowCost = eventWithShows.reduce((accumulator, show) => { return accumulator + show.price }, 0); .catch((err) => console.error('error in getAllShowsByEventId', err))