Class: Spree::Promotion
- Inherits:
-
Base
- Object
- ActiveRecord::Base
- Base
- Spree::Promotion
show all
- Defined in:
- app/models/spree/promotion.rb,
app/models/spree/promotion/rules/user.rb,
app/models/spree/promotion/rules/store.rb,
app/models/spree/promotion/rules/taxon.rb,
app/models/spree/promotion/rules/product.rb,
app/models/spree/promotion/rules/nth_order.rb,
app/models/spree/promotion/rules/user_role.rb,
app/models/spree/promotion/rules/item_total.rb,
app/models/spree/promotion/rules/first_order.rb,
app/models/spree/promotion/rules/option_value.rb,
app/models/spree/promotion/rules/user_logged_in.rb,
app/models/spree/promotion/actions/free_shipping.rb,
app/models/spree/promotion/rules/one_use_per_user.rb,
app/models/spree/promotion/actions/create_adjustment.rb,
app/models/spree/promotion/order_adjustments_recalculator.rb,
app/models/spree/promotion/actions/create_item_adjustments.rb,
app/models/spree/promotion/rules/first_repeat_purchase_since.rb,
app/models/spree/promotion/actions/create_quantity_adjustments.rb
Defined Under Namespace
Modules: Actions, Rules
Classes: OrderAdjustmentsRecalculator
Constant Summary
collapse
- UNACTIVATABLE_ORDER_STATES =
["complete", "awaiting_return", "returned"]
- MATCH_POLICIES =
%w(all any)
Instance Attribute Summary collapse
Class Method Summary
collapse
Instance Method Summary
collapse
-
#activate(order:, line_item: nil, user: nil, path: nil, promotion_code: nil) ⇒ Object
-
#active? ⇒ Boolean
-
#as_json(options = {}) ⇒ Object
-
#discounted_orders ⇒ Object
All orders that have been discounted using this promotion.
-
#eligible?(promotable, promotion_code: nil) ⇒ Boolean
called anytime order.recalculate happens.
-
#eligible_rules(promotable, options = {}) ⇒ Object
eligible_rules returns an array of promotion rules where eligible? is true for the promotable if there are no such rules, an empty array is returned if the rules make this promotable ineligible, then nil is returned (i.e. this promotable is not eligible).
-
#expired? ⇒ Boolean
-
#inactive? ⇒ Boolean
-
#line_item_actionable?(order, line_item, promotion_code: nil) ⇒ Boolean
-
#not_expired? ⇒ Boolean
-
#not_started? ⇒ Boolean
-
#products ⇒ Object
-
#remove_from(order) ⇒ void
Removes a promotion and any adjustments or other side effects from an order.
-
#started? ⇒ Boolean
-
#usage_count(excluded_orders: []) ⇒ Integer
Number of times the code has been used overall.
-
#usage_limit_exceeded?(excluded_orders: []) ⇒ Boolean
Whether the promotion has exceeded its usage restrictions.
-
#used_by?(user, excluded_orders = []) ⇒ Boolean
Methods inherited from Base
display_includes
#generate_permalink, #save_permalink
Instance Attribute Details
#eligibility_errors ⇒ Object
Returns the value of attribute eligibility_errors.
10
11
12
|
# File 'app/models/spree/promotion.rb', line 10
def eligibility_errors
@eligibility_errors
end
|
Class Method Details
.order_activatable?(order) ⇒ Boolean
60
61
62
|
# File 'app/models/spree/promotion.rb', line 60
def self.order_activatable?(order)
order && !UNACTIVATABLE_ORDER_STATES.include?(order.state)
end
|
.with_coupon_code(val) ⇒ Object
64
65
66
67
68
|
# File 'app/models/spree/promotion.rb', line 64
def self.with_coupon_code(val)
joins(:codes).where(
PromotionCode.arel_table[:value].eq(val.downcase)
).first
end
|
Instance Method Details
#activate(order:, line_item: nil, user: nil, path: nil, promotion_code: nil) ⇒ Object
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
# File 'app/models/spree/promotion.rb', line 112
def activate(order:, line_item: nil, user: nil, path: nil, promotion_code: nil)
return unless self.class.order_activatable?(order)
payload = {
order: order,
promotion: self,
line_item: line_item,
user: user,
path: path,
promotion_code: promotion_code
}
results = actions.map do |action|
action.perform(payload)
end
action_taken = results.include?(true)
if action_taken
order.order_promotions.find_or_create_by!(
promotion: self,
promotion_code: promotion_code,
)
order.promotions.reset
order_promotions.reset
orders.reset
end
action_taken
end
|
#active? ⇒ Boolean
104
105
106
|
# File 'app/models/spree/promotion.rb', line 104
def active?
started? && not_expired? && actions.present?
end
|
#as_json(options = {}) ⇒ Object
83
84
85
86
|
# File 'app/models/spree/promotion.rb', line 83
def as_json(options = {})
options[:except] ||= :code
super
end
|
#discounted_orders ⇒ Object
All orders that have been discounted using this promotion
71
72
73
74
75
76
77
78
79
80
81
|
# File 'app/models/spree/promotion.rb', line 71
def discounted_orders
Spree::Order.
joins(:all_adjustments).
where(
spree_adjustments: {
source_type: "Spree::PromotionAction",
source_id: actions.map(&:id),
eligible: true
}
).distinct
end
|
#eligible?(promotable, promotion_code: nil) ⇒ Boolean
called anytime order.recalculate happens
148
149
150
151
152
153
154
155
156
157
|
# File 'app/models/spree/promotion.rb', line 148
def eligible?(promotable, promotion_code: nil)
return false if inactive?
return false if blacklisted?(promotable)
excluded_orders = eligibility_excluded_orders(promotable)
return false if usage_limit_exceeded?(excluded_orders: excluded_orders)
return false if promotion_code&.usage_limit_exceeded?(excluded_orders: excluded_orders)
!!eligible_rules(promotable, {})
end
|
#eligible_rules(promotable, options = {}) ⇒ Object
eligible_rules returns an array of promotion rules where eligible? is true for the promotable if there are no such rules, an empty array is returned if the rules make this promotable ineligible, then nil is returned (i.e. this promotable is not eligible)
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
|
# File 'app/models/spree/promotion.rb', line 162
def eligible_rules(promotable, options = {})
return [] if rules.none?
eligible = lambda { |rule| rule.eligible?(promotable, options) }
specific_rules = rules.select { |rule| rule.applicable?(promotable) }
return [] if specific_rules.none?
if match_all?
unless specific_rules.all?(&eligible)
@eligibility_errors = specific_rules.map(&:eligibility_errors).detect(&:present?)
return nil
end
specific_rules
else
Spree::Deprecation.warn(
<<~WARN
Your promotion "#{name}" with ID #{id} has a match_policy of 'any'.
This is deprecated, please split the promotion into separate promotions for each rule.
WARN
)
unless specific_rules.any?(&eligible)
@eligibility_errors = specific_rules.map(&:eligibility_errors).detect(&:present?)
return nil
end
specific_rules.select(&eligible)
end
end
|
#expired? ⇒ Boolean
96
97
98
|
# File 'app/models/spree/promotion.rb', line 96
def expired?
expires_at.present? && expires_at < Time.current
end
|
#inactive? ⇒ Boolean
108
109
110
|
# File 'app/models/spree/promotion.rb', line 108
def inactive?
!active?
end
|
#line_item_actionable?(order, line_item, promotion_code: nil) ⇒ Boolean
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
|
# File 'app/models/spree/promotion.rb', line 219
def line_item_actionable?(order, line_item, promotion_code: nil)
return false if blacklisted?(line_item)
if eligible?(order, promotion_code: promotion_code)
rules = eligible_rules(order)
if rules.blank?
true
else
rules.send(match_all? ? :all? : :any?) do |rule|
rule.actionable? line_item
end
end
else
false
end
end
|
#not_expired? ⇒ Boolean
100
101
102
|
# File 'app/models/spree/promotion.rb', line 100
def not_expired?
!expired?
end
|
#not_started? ⇒ Boolean
88
89
90
|
# File 'app/models/spree/promotion.rb', line 88
def not_started?
!started?
end
|
#products ⇒ Object
193
194
195
|
# File 'app/models/spree/promotion.rb', line 193
def products
rules.where(type: "Spree::Promotion::Rules::Product").flat_map(&:products).uniq
end
|
#remove_from(order) ⇒ void
This method returns an undefined value.
Removes a promotion and any adjustments or other side effects from an order.
249
250
251
252
253
254
255
256
257
|
# File 'app/models/spree/promotion.rb', line 249
def remove_from(order)
actions.each do |action|
action.remove_from(order)
end
order.promotions.destroy(self)
order.order_promotions.reset
order_promotions.reset
end
|
#started? ⇒ Boolean
92
93
94
|
# File 'app/models/spree/promotion.rb', line 92
def started?
starts_at.nil? || starts_at < Time.current
end
|
#usage_count(excluded_orders: []) ⇒ Integer
Number of times the code has been used overall
211
212
213
214
215
216
217
|
# File 'app/models/spree/promotion.rb', line 211
def usage_count(excluded_orders: [])
discounted_orders.
complete.
where.not(id: [excluded_orders.map(&:id)]).
where.not(spree_orders: { state: :canceled }).
count
end
|
#usage_limit_exceeded?(excluded_orders: []) ⇒ Boolean
Whether the promotion has exceeded its usage restrictions.
201
202
203
204
205
|
# File 'app/models/spree/promotion.rb', line 201
def usage_limit_exceeded?(excluded_orders: [])
if usage_limit
usage_count(excluded_orders: excluded_orders) >= usage_limit
end
end
|
#used_by?(user, excluded_orders = []) ⇒ Boolean
236
237
238
239
240
241
242
243
|
# File 'app/models/spree/promotion.rb', line 236
def used_by?(user, excluded_orders = [])
discounted_orders.
complete.
where.not(id: excluded_orders.map(&:id)).
where(user: user).
where.not(spree_orders: { state: :canceled }).
exists?
end
|