Class: Spree::Calculator::PriceSack
- Inherits:
-
Spree::Calculator
- Object
- ActiveRecord::Base
- Spree::Calculator
- Spree::Calculator::PriceSack
- Defined in:
- app/models/spree/calculator/price_sack.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#compute(object) ⇒ Object
as object we always get line items, as calculable we have Coupon, ShippingMethod.
Methods inherited from Spree::Calculator
#available?, calculators, #description, register, #to_s
Class Method Details
.description ⇒ Object
7 8 9 |
# File 'app/models/spree/calculator/price_sack.rb', line 7 def self.description I18n.t(:price_sack) end |
Instance Method Details
#compute(object) ⇒ Object
as object we always get line items, as calculable we have Coupon, ShippingMethod
12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'app/models/spree/calculator/price_sack.rb', line 12 def compute(object) if object.is_a?(Array) base = object.map { |o| o.respond_to?(:amount) ? o.amount : o.to_d }.sum else base = object.respond_to?(:amount) ? object.amount : object.to_d end if base >= self.preferred_minimal_amount self.preferred_normal_amount else self.preferred_discount_amount end end |