Class: Spree::Adjustment
- Extended by:
- DisplayMoney
- Defined in:
- app/models/spree/adjustment.rb
Overview
Adjustments represent a change to the item_total
of an Order. Each adjustment has an amount
that can be either positive or negative.
Adjustments can be “opened” or “closed”. Once an adjustment is closed, it will not be automatically updated.
Boolean attributes
-
eligible?
This boolean attributes stores whether this adjustment is currently eligible for its order. Only eligible adjustments count towards the order’s adjustment total. This allows an adjustment to be preserved if it becomes ineligible so it might be reinstated.
Instance Method Summary collapse
-
#calculate_eligibility ⇒ true, false
private
Calculates based on attached promotion (if this is a promotion adjustment) whether this promotion is still eligible.
-
#cancellation? ⇒ Boolean
True when this is a cancellation adjustment (Cancellation adjustments have a UnitCancel source).
- #currency ⇒ Object
- #finalize ⇒ Object
- #finalize! ⇒ Object
-
#promotion? ⇒ Boolean
True when this is a promotion adjustment (Promotion adjustments have a PromotionAction source).
- #recalculate ⇒ BigDecimal
-
#tax? ⇒ Boolean
True when this is a tax adjustment (Tax adjustments have a TaxRate source).
- #unfinalize ⇒ Object
- #unfinalize! ⇒ Object
- #update!(*args) ⇒ Object
Methods included from DisplayMoney
Methods inherited from Base
display_includes, #initialize_preference_defaults, page, preference
Methods included from Preferences::Preferable
#default_preferences, #defined_preferences, #get_preference, #has_preference!, #has_preference?, #preference_default, #preference_type, #set_preference
Instance Method Details
#calculate_eligibility ⇒ true, false
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Calculates based on attached promotion (if this is a promotion adjustment) whether this promotion is still eligible.
134 135 136 137 138 139 140 |
# File 'app/models/spree/adjustment.rb', line 134 def calculate_eligibility if !finalized? && source && promotion? source.promotion.eligible?(adjustable, promotion_code: promotion_code) else eligible? end end |
#cancellation? ⇒ Boolean
Returns true when this is a cancellation adjustment (Cancellation adjustments have a UnitCancel source).
88 89 90 |
# File 'app/models/spree/adjustment.rb', line 88 def cancellation? source_type == 'Spree::UnitCancel' end |
#currency ⇒ Object
73 74 75 |
# File 'app/models/spree/adjustment.rb', line 73 def currency adjustable ? adjustable.currency : Spree::Config[:currency] end |
#finalize ⇒ Object
65 66 67 |
# File 'app/models/spree/adjustment.rb', line 65 def finalize update_attributes(finalized: true) end |
#finalize! ⇒ Object
57 58 59 |
# File 'app/models/spree/adjustment.rb', line 57 def finalize! update_attributes!(finalized: true) end |
#promotion? ⇒ Boolean
Returns true when this is a promotion adjustment (Promotion adjustments have a PromotionAction source).
78 79 80 |
# File 'app/models/spree/adjustment.rb', line 78 def promotion? source_type == 'Spree::PromotionAction' end |
#recalculate ⇒ BigDecimal
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 |
# File 'app/models/spree/adjustment.rb', line 99 def recalculate if finalized? && !tax? return amount end # 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. if source.present? self.amount = source.compute_amount(adjustable) if promotion? self.eligible = calculate_eligibility end # Persist only if changed # This is only not a save! to avoid the extra queries to load the order # (for validations) and to touch the adjustment. update_columns(eligible: eligible, amount: amount, updated_at: Time.current) if changed? end amount end |
#tax? ⇒ Boolean
Returns true when this is a tax adjustment (Tax adjustments have a TaxRate source).
83 84 85 |
# File 'app/models/spree/adjustment.rb', line 83 def tax? source_type == 'Spree::TaxRate' end |
#unfinalize ⇒ Object
69 70 71 |
# File 'app/models/spree/adjustment.rb', line 69 def unfinalize update_attributes(finalized: false) end |
#unfinalize! ⇒ Object
61 62 63 |
# File 'app/models/spree/adjustment.rb', line 61 def unfinalize! update_attributes!(finalized: false) end |
#update!(*args) ⇒ Object
121 122 123 124 125 126 127 128 |
# File 'app/models/spree/adjustment.rb', line 121 def update!(*args) if args.empty? Spree::Deprecation.warn "Calling adjustment.update! with no arguments to recalculate amounts and eligibility is deprecated, since it conflicts with AR::Base#update! Please use adjustment.recalculate instead" recalculate else super end end |