Class: Spree::Promotion::Rules::FirstOrder
- Inherits:
-
Spree::PromotionRule
- Object
- Spree::PromotionRule
- Spree::Promotion::Rules::FirstOrder
- Defined in:
- app/models/spree/promotion/rules/first_order.rb
Instance Attribute Summary collapse
-
#email ⇒ Object
readonly
Returns the value of attribute email.
-
#store ⇒ Object
readonly
Returns the value of attribute store.
-
#user ⇒ Object
readonly
Returns the value of attribute user.
Instance Method Summary collapse
Methods inherited from Spree::PromotionRule
#actionable?, #eligibility_errors, for, #human_description, #human_name, #key
Instance Attribute Details
#email ⇒ Object (readonly)
Returns the value of attribute email.
5 6 7 |
# File 'app/models/spree/promotion/rules/first_order.rb', line 5 def email @email end |
#store ⇒ Object (readonly)
Returns the value of attribute store.
5 6 7 |
# File 'app/models/spree/promotion/rules/first_order.rb', line 5 def store @store end |
#user ⇒ Object (readonly)
Returns the value of attribute user.
5 6 7 |
# File 'app/models/spree/promotion/rules/first_order.rb', line 5 def user @user end |
Instance Method Details
#applicable?(promotable) ⇒ Boolean
7 8 9 |
# File 'app/models/spree/promotion/rules/first_order.rb', line 7 def applicable?(promotable) promotable.is_a?(Spree::Order) end |
#eligible?(order, options = {}) ⇒ Boolean
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'app/models/spree/promotion/rules/first_order.rb', line 11 def eligible?(order, = {}) @user = order.try(:user) || [:user] @email = if [:email].present? order.email = [:email] order.email elsif order.email.present? order.email end @store = order.store if user || email if !completed_orders.blank? && completed_orders.first != order eligibility_errors.add(:base, (:not_first_order)) end else eligibility_errors.add(:base, (:no_user_or_email_specified)) end eligibility_errors.empty? end |