<%= t('.qty', default: 'Quantity') %> |
<%= t('.item', default: 'Item') %> |
<%= t('.price', default: 'Price') %> |
<%= t('.tax', default: 'Tax') %> |
<%= t('.subtotal', default: 'Sub Total') %> |
<% @cart.product_items.decorate.each do |item| product = item.product.decorate %>
<%= item.qty %> |
<%= product.the_title %> |
<%= item.the_price %> |
<%= item.the_tax %> |
<%= item.the_sub_total %> |
<% end %>
|
<%= t('.total_excl', default: 'Total (excluding Tax)') %> |
<%= @cart.the_sub_total %> |
|
<%= t('.tax', default: 'Tax') %> |
<%= @cart.the_tax_total %> |
|
<%= t('.discount', default: 'Discount') %> |
<%= @cart.the_total_discounts %> |
|
<%= t('.total_shipping', default: 'Total shipping') %> |
<%= @cart.the_total_shipping %> |
|
<%= t('.total_price', default: 'Total Price') %> |
<%= @cart.the_price %> |