Class: Spree::Promotion::Rules::FirstRepeatPurchaseSince

Inherits:
Spree::PromotionRule show all
Defined in:
app/models/spree/promotion/rules/first_repeat_purchase_since.rb

Instance Method Summary collapse

Methods inherited from Spree::PromotionRule

#actionable?, #eligibility_errors, #preload_relations, #to_partial_path

Methods inherited from Base

display_includes

Methods included from Core::Permalinks

#generate_permalink, #save_permalink

Instance Method Details

#applicable?(promotable) ⇒ Boolean

This promotion is applicable to orders only.

Returns:

  • (Boolean)


11
12
13
# File 'app/models/spree/promotion/rules/first_repeat_purchase_since.rb', line 11

def applicable?(promotable)
  promotable.is_a?(Spree::Order)
end

#eligible?(order, _options = {}) ⇒ Boolean

This is never eligible if the order does not have a user, and that user does not have any previous completed orders.

This is eligible if the user’s most recently completed order is more than the preferred days ago

Parameters:

Returns:

  • (Boolean)


19
20
21
22
23
24
25
26
# File 'app/models/spree/promotion/rules/first_repeat_purchase_since.rb', line 19

def eligible?(order, _options = {})
  return false unless order.user

  last_order = last_completed_order(order.user)
  return false unless last_order

  last_order.completed_at < preferred_days_ago.days.ago
end