Class: Spree::Calculator::PriceSack

Inherits:
Spree::Calculator show all
Defined in:
app/models/spree/calculator/price_sack.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Spree::Calculator

#available?, calculators, #description, register, #to_s

Class Method Details

.descriptionObject



13
14
15
# File 'app/models/spree/calculator/price_sack.rb', line 13

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



18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'app/models/spree/calculator/price_sack.rb', line 18

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