Module: ShoppingCart::OrdersHelper
- Defined in:
- app/helpers/shopping_cart/orders_helper.rb
Instance Method Summary collapse
Instance Method Details
#calculate_discount(order) ⇒ Object
3 4 5 |
# File 'app/helpers/shopping_cart/orders_helper.rb', line 3 def calculate_discount(order) order.discount_amount ? order.subtotal_price * (order.discount_amount.to_f / 100) : 0 end |