Method: Spree::LineItem#discounted_amount

Defined in:
app/models/spree/line_item.rb

#discounted_amountBigDecimal

Returns the amount of this line item, taking into consideration line item promotions.

Returns:

  • (BigDecimal)

    the amount of this line item, taking into consideration line item promotions.



70
71
72
# File 'app/models/spree/line_item.rb', line 70

def discounted_amount
  amount + promo_total
end