Class: Spree::PromotionHandler::FreeShipping

Inherits:
Object
  • Object
show all
Defined in:
app/models/spree/promotion_handler/free_shipping.rb

Overview

Used for activating promotions with shipping rules

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(order) ⇒ FreeShipping

Returns a new instance of FreeShipping.



8
9
10
# File 'app/models/spree/promotion_handler/free_shipping.rb', line 8

def initialize(order)
  @order = order
end

Instance Attribute Details

#errorObject

Returns the value of attribute error.



6
7
8
# File 'app/models/spree/promotion_handler/free_shipping.rb', line 6

def error
  @error
end

#orderObject (readonly)

Returns the value of attribute order.



5
6
7
# File 'app/models/spree/promotion_handler/free_shipping.rb', line 5

def order
  @order
end

#successObject

Returns the value of attribute success.



6
7
8
# File 'app/models/spree/promotion_handler/free_shipping.rb', line 6

def success
  @success
end

Instance Method Details

#activateObject



12
13
14
15
16
17
18
# File 'app/models/spree/promotion_handler/free_shipping.rb', line 12

def activate
  promotions.each do |promotion|
    if promotion.eligible?(order)
      promotion.activate(order: order)
    end
  end
end