Skip to content

Commit

Permalink
Make cancel email match changes in confirm email made by Radar in 5be…
Browse files Browse the repository at this point in the history
  • Loading branch information
Ted Lilley authored and radar committed Jun 4, 2012
1 parent a6ba2b0 commit c7c5bc6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/app/views/spree/order_mailer/cancel_email.text.erb
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ Your order has been CANCELED. Please retain this cancellation information for y
Order Summary [CANCELED]
============================================================
<% @order.line_items.each do |item| %>
<%= item.variant.sku %> <%= item.variant.product.name %> <%= variant_options(item.variant) %> (<%= item.quantity %>) @ <%= number_to_currency item.price %> = <%= number_to_currency(item.price * item.quantity) %>
<%= item.variant.sku %> <%= raw(item.variant.product.name) %> <%= raw(item.variant.options_text) -%> (<%=item.quantity%>) @ <%= number_to_currency item.price %> = <%= number_to_currency(item.price * item.quantity) %>
<% end %>
============================================================
Subtotal: <%= number_to_currency @order.item_total %>
<% @order.adjustments.eligible.each do |adjustment| %>
<%= "#{adjustment.label}: #{number_to_currency adjustment.amount}"%>
<%= raw(adjustment.label) %> <%= number_to_currency(adjustment.amount) %>
<% end %>
Order Total: <%= number_to_currency @order.total %>
Order Total: <%= number_to_currency(@order.total) %>

0 comments on commit c7c5bc6

Please sign in to comment.