Sha256: 5795ca2478042a0462cc313ab2ae02da45edd59f099e21249e0c408c3c1e95b5

Contents?: true

Size: 910 Bytes

Versions: 30

Compression:

Stored size: 910 Bytes

Contents

Order #<%= @order.number %> was placed by <%= @order.final_billing_address.name %> .

Payment date: <%= @payment_date %>

Shipping address:
<% @order.shipping_address.full_address_array.each do |line| %>
<%= line %>
<% end %>

<% unless @order.shipping_address.use_for_billing %>
Billing address :
<% @order.billing_address.full_address_array.each do |line| %>
<%= line %>
<% end %>
<% end %>

Items purchased:

<% @order.line_items.each do |line_item| %>
  <% product = line_item.product %>
Name: <%= truncate(sanitize(product.name), length: 90) %>
Item price: <%= number_to_currency(product.price) %>
Item quantity: <%= line_item.quantity %>
Item total price: <%= number_to_currency(line_item.price) %>
<% end %>

Shipping method: <%= @order.shipping_method.name %>
Shipping cost: <%= number_to_currency(@order.shipping_method.shipping_cost) %>

Total amount: <%= number_to_currency(@order.total_amount) %>

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
nimbleshop_core-0.0.23 app/views/admin/mailer/new_order_notification.text.erb
nimbleshop_core-0.0.21 app/views/admin/mailer/new_order_notification.text.erb
nimbleshop_core-0.0.20 app/views/admin/mailer/new_order_notification.text.erb
nimbleshop_core-0.0.19 app/views/admin/mailer/new_order_notification.text.erb
nimbleshop_core-0.0.17 app/views/admin/mailer/new_order_notification.text.erb
nimbleshop_core-0.0.16 app/views/admin/mailer/new_order_notification.text.erb
nimbleshop_core-0.0.15 app/views/admin/mailer/new_order_notification.text.erb
nimbleshop_core-0.0.14 app/views/admin/mailer/new_order_notification.text.erb
nimbleshop_core-0.0.14.rc2 app/views/admin/mailer/new_order_notification.text.erb
nimbleshop_core-0.0.14.rc1 app/views/admin/mailer/new_order_notification.text.erb
nimbleshop_core-0.0.13 app/views/admin/mailer/new_order_notification.text.erb
nimbleshop_core-0.0.12 app/views/admin/mailer/new_order_notification.text.erb
nimbleshop_core-0.0.11 app/views/admin/mailer/new_order_notification.text.erb
nimbleshop_core-0.0.10 app/views/admin/mailer/new_order_notification.text.erb
nimbleshop_core-0.0.9 app/views/admin/mailer/new_order_notification.text.erb
nimbleshop_core-0.0.8 app/views/admin/mailer/new_order_notification.text.erb
nimbleshop_core-0.0.7 app/views/admin/mailer/new_order_notification.text.erb
nimbleshop_core-0.0.5 app/views/admin/mailer/new_order_notification.text.erb
nimbleshop_core-0.0.4.beta1 app/views/admin/mailer/new_order_notification.text.erb
nimbleshop_core-0.0.4 app/views/admin/mailer/new_order_notification.text.erb