Add Income tracking to the Purchase System
[cs356-p2-videostore.git] / app / views / purchase / income_results.rhtml
index eafd83f..6c10b8c 100644 (file)
@@ -2,6 +2,11 @@
 
 <p><b>Number of Merchandise Items Sold: </b><%= @merch_count %></p>
 <p><b>Income from Merchandise: </b><%= number_to_currency(@merch_sum) %></p>
+<br/>
 <p><b>Number of Rentals: </b><%= @rent_count %></p>
 <p><b>Income from Rentals: </b><%= number_to_currency(@rent_sum) %></p>
+<br/>
+<p><b>Number of Late Fee Payments: </b><%= @late_count %></p>
+<p><b>Income from Late Fee Payments: </b><%= number_to_currency(@late_sum) %></p>
+<br/>
 <p><b>Total Income: </b><%= number_to_currency(@total) %></p>