Add Income tracking to the Purchase System
[cs356-p2-videostore.git] / app / views / purchase / list.rhtml
index b702f7f..504bc61 100644 (file)
@@ -3,7 +3,6 @@
 <table border="1">
   <tr>
     <th>Date</th>
-    <th>Quantity</th>
     <th>Type</th>
     <th>Title</th>
     <th>Price</th>
 <% for purchase in @purchases %>
   <tr>
     <td><%=link_to purchase.date, :action => 'filterbydate', :id => purchase.date %></td>
-    <td><%=h purchase.quantity %></td>
     <td><%=link_to purchase.class, :action => 'filterbytype', :id => purchase.type %></td>
     <td><%=h purchase.title %></td>
-    <td><%=h purchase.price %></td>
+    <td><%=h number_to_currency(purchase.price) %></td>
     <td><%=link_to purchase.customer.name, :action => 'filterbycust', :id => purchase.customer_id %></td>
   </tr>
 <% end %>