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



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

def self.description
  Spree.t(:price_sack)
end

Instance Method Details

#compute(object) ⇒ Object

as object we always get line items, as calculable we have Coupon, ShippingMethod



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

def compute(object)
  if object.is_a?(Array)
    base = object.map { |o| o.respond_to?(:amount) ? o.amount : BigDecimal(o.to_s) }.sum
  else
    base = object.respond_to?(:amount) ? object.amount : BigDecimal(object.to_s)
  end

  if base < self.preferred_minimal_amount
    self.preferred_normal_amount
  else
    self.preferred_discount_amount
  end
end