Class: Spree::Adjustment

Inherits:
Base
  • Object
show all
Defined in:
app/models/spree/adjustment.rb

Instance Method Summary collapse

Methods inherited from Base

page

Methods included from Preferences::Preferable

#clear_preferences, #default_preferences, #defined_preferences, #get_preference, #has_preference!, #has_preference?, #preference_default, #preference_type, #set_preference

Instance Method Details

#closed?Boolean

Returns:

  • (Boolean)


61
62
63
# File 'app/models/spree/adjustment.rb', line 61

def closed?
  state == "closed"
end

#currencyObject



65
66
67
# File 'app/models/spree/adjustment.rb', line 65

def currency
  adjustable ? adjustable.currency : Spree::Config[:currency]
end

#display_amountObject



69
70
71
# File 'app/models/spree/adjustment.rb', line 69

def display_amount
  Spree::Money.new(amount, { currency: currency })
end

#promotion?Boolean

Returns:

  • (Boolean)


73
74
75
# File 'app/models/spree/adjustment.rb', line 73

def promotion?
  source.class < Spree::PromotionAction
end

#update!(target = nil) ⇒ Object

Recalculate amount given a target e.g. Order, Shipment, LineItem

Passing a target here would always be recommended as it would avoid hitting the database again and would ensure you’re compute values over the specific object amount passed here.

Noop if the adjustment is locked.

If the adjustment has no source, do not attempt to re-calculate the amount. Chances are likely that this was a manually created adjustment in the admin backend.



87
88
89
90
91
92
93
94
95
96
97
98
99
100
# File 'app/models/spree/adjustment.rb', line 87

def update!(target = nil)
  return amount if closed?
  if source.present?
    amount = source.compute_amount(target || adjustable)
    self.update_columns(
      amount: amount,
      updated_at: Time.now,
    )
    if promotion?
      self.update_column(:eligible, source.promotion.eligible?(adjustable))
    end
  end
  amount
end