Class: Spree::Promotion::Rules::FirstOrder

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

Instance Attribute Summary collapse

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 Attribute Details

#emailObject (readonly)

Returns the value of attribute email.



7
8
9
# File 'app/models/spree/promotion/rules/first_order.rb', line 7

def email
  @email
end

#userObject (readonly)

Returns the value of attribute user.



7
8
9
# File 'app/models/spree/promotion/rules/first_order.rb', line 7

def user
  @user
end

Instance Method Details

#applicable?(promotable) ⇒ Boolean

Returns:

  • (Boolean)


9
10
11
# File 'app/models/spree/promotion/rules/first_order.rb', line 9

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

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

Returns:

  • (Boolean)


13
14
15
16
17
18
19
20
21
22
23
24
# File 'app/models/spree/promotion/rules/first_order.rb', line 13

def eligible?(order, options = {})
  @user = order.try(:user) || options[:user]
  @email = order.email

  if user || email
    if !completed_orders.blank? && completed_orders.first != order
      eligibility_errors.add(:base, eligibility_error_message(:not_first_order), error_code: :not_first_order)
    end
  end

  eligibility_errors.empty?
end