mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
33 lines
1.2 KiB
Plaintext
33 lines
1.2 KiB
Plaintext
%orderdetails
|
|
= form_for current_order, url: "#", html: {"ng-submit" => "purchase($event)"} do |f|
|
|
%fieldset
|
|
%legend Your order
|
|
%table
|
|
%tr
|
|
%th Cart total
|
|
%td.cart-total.text-right= spree_number_to_currency(checkout_cart_total_with_adjustments(current_order))
|
|
|
|
- checkout_adjustments_for_summary(current_order, exclude: [:shipping, :distribution]).each do |adjustment|
|
|
%tr
|
|
%th= adjustment.label
|
|
%td.text-right= adjustment.display_amount.to_html
|
|
|
|
%tr
|
|
%th Shipping
|
|
%td.shipping.text-right {{ Checkout.shippingPrice() | localizeCurrency }}
|
|
|
|
%tr
|
|
%th Total
|
|
%td.total.text-right {{ Checkout.cartTotal() | localizeCurrency }}
|
|
- if current_order.price_adjustment_totals.present?
|
|
- current_order.price_adjustment_totals.each do |label, total|
|
|
%tr
|
|
%th= label
|
|
%td= total
|
|
|
|
//= f.submit "Purchase", class: "button", "ng-disabled" => "checkout.$invalid", "ofn-focus" => "accordion['payment']"
|
|
%a.button.secondary{href: cart_url}
|
|
%i.ofn-i_008-caret-left
|
|
Back to Cart
|
|
|