<%= t('.dear_customer') %>

<%= t('.instructions') %>

<%= t('.order_summary') %>

<% @order.line_items.each do |item| %> <% end %> <% if @order.line_item_adjustments.exists? %> <% if @order.all_adjustments.promotion.exists? %> <% @order.all_adjustments.promotion.group_by(&:label).each do |label, adjustments| %> <% end %> <% end %> <% end %> <% @order.shipments.group_by { |s| s.selected_shipping_rate.try(:name) }.each do |name, shipments| %> <% end %> <% if @order.all_adjustments.tax.exists? %> <% @order.all_adjustments.tax.group_by(&:label).each do |label, adjustments| %> <% end %> <% end %> <% @order.adjustments.each do |adjustment| %> <% next if (adjustment.source_type == 'Spree::TaxRate') and (adjustment.amount == 0) %> <% end %>
<%= item.variant.sku %> <%= item.variant.product.name %> <%= item.variant.options_text -%> (<%=item.quantity%>) @ <%= item.single_money %> = <%= item.display_amount %>
<%= t('.subtotal') %> <%= @order.display_item_total %>
<%= t('spree.promotion') %> <%= label %>: <%= Spree::Money.new(adjustments.sum(&:amount), currency: @order.currency) %>
<%= t('spree.shipping') %> <%= name %>: <%= Spree::Money.new(shipments.sum(&:total_before_tax), currency: @order.currency) %>
<%= t('spree.tax') %> <%= label %>: <%= Spree::Money.new(adjustments.sum(&:amount), currency: @order.currency) %>
<%= adjustment.label %>: <%= adjustment.display_amount %>
<%= t('.total') %> <%= @order.display_total %>

<%= t('.thanks') %>