Sha256: 216aa6f6dfe3fc08a609fdae3c64b4fdeaf1e3d532778c443fa665c78403a759

Contents?: true

Size: 1.07 KB

Versions: 16

Compression:

Stored size: 1.07 KB

Contents

#order
  .order-title
    %h3
      Order –
      = @action.to_s.gsub(/_/,' ').titleize

  .order-header
    %p
      \#
      = order_snapshot.order_number

  .order-content
    %ul
      - order_snapshot.line_items.each do |item|
        %li
          .item-name= item.product.name
          .item-quantity= item.quantity
          .item-unit-price= item.unit_price
          .item-total-price= pretty_total_price( item )

  .order-totals
    - sub_product  = order_snapshot.total_price
    - sub_discount = 0.0
    - sub_shipping = 0.0
    - sub_tax      = 0.0
    - grand_total  = sub_product - sub_discount + sub_shipping + sub_tax

    .sub-total-type product
    .sub-total-amount= number_to_currency sub_product

    .sub-total-type discount
    .sub-total-amount= number_to_currency  sub_discount

    .sub-total-type shipping
    .sub-total-amount= number_to_currency  sub_shipping 

    .sub-total-type tax
    .sub-total-amount= number_to_currency  sub_shipping 

    .total-type purchase total
    .total-amount= number_to_currency  grand_total

  .order-footer
     

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
refinerycms-stores-0.1.0 app/views/refinery/orders/orders/_order_snapshot.html.haml
refinerycms-stores-0.0.16 app/views/refinery/orders/orders/_order_snapshot.html.haml
refinerycms-stores-0.0.14 app/views/refinery/orders/orders/_order_snapshot.html.haml
refinerycms-stores-0.0.13 app/views/refinery/orders/orders/_order_snapshot.html.haml
refinerycms-stores-0.0.12 app/views/refinery/orders/orders/_order_snapshot.html.haml
refinerycms-stores-0.0.11 app/views/refinery/orders/orders/_order_snapshot.html.haml
refinerycms-stores-0.0.10 app/views/refinery/orders/orders/_order_snapshot.html.haml
refinerycms-stores-0.0.9 app/views/refinery/orders/orders/_order_snapshot.html.haml
refinerycms-stores-0.0.8 app/views/refinery/orders/orders/_order_snapshot.html.haml
refinerycms-stores-0.0.7 app/views/refinery/orders/orders/_order_snapshot.html.haml
refinerycms-stores-0.0.6 app/views/refinery/orders/orders/_order_snapshot.html.haml
refinerycms-stores-0.0.5 app/views/refinery/orders/orders/_order_snapshot.html.haml
refinerycms-stores-0.0.4 app/views/refinery/orders/orders/_order_snapshot.html.haml
refinerycms-stores-0.0.3 app/views/refinery/orders/orders/_order_snapshot.html.haml
refinerycms-stores-0.0.2 app/views/refinery/orders/orders/_order_snapshot.html.haml
refinerycms-stores-0.0.1 app/views/refinery/orders/orders/_order_snapshot.html.haml