Class: Spree::Promotion::Actions::FreeShipping
- Inherits:
-
Spree::PromotionAction
- Object
- Base
- Spree::PromotionAction
- Spree::Promotion::Actions::FreeShipping
- Defined in:
- app/models/spree/promotion/actions/free_shipping.rb
Instance Method Summary collapse
- #compute_amount(shipment) ⇒ Object
- #label ⇒ Object
- #perform(payload = {}) ⇒ Object
-
#remove_from(order) ⇒ void
Removes any adjustments generated by this action from the order’s shipments.
Methods inherited from Spree::PromotionAction
#available_calculators, #preload_relations, #to_partial_path
Instance Method Details
#compute_amount(shipment) ⇒ Object
33 34 35 |
# File 'app/models/spree/promotion/actions/free_shipping.rb', line 33 def compute_amount(shipment) shipment.cost * -1 end |
#label ⇒ Object
29 30 31 |
# File 'app/models/spree/promotion/actions/free_shipping.rb', line 29 def label "#{I18n.t('spree.promotion')} (#{promotion.name})" end |
#perform(payload = {}) ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'app/models/spree/promotion/actions/free_shipping.rb', line 7 def perform(payload = {}) order = payload[:order] promotion_code = payload[:promotion_code] return false unless promotion.eligible? order created_adjustments = order.shipments.map do |shipment| next if promotion_credit_exists?(shipment) shipment.adjustments.create!( order: shipment.order, amount: compute_amount(shipment), source: self, promotion_code:, label: ) end # Did we actually end up creating any adjustments? # If so, then this action should be classed as 'successful' created_adjustments.any? end |
#remove_from(order) ⇒ void
This method returns an undefined value.
Removes any adjustments generated by this action from the order’s
shipments.
41 42 43 44 45 46 47 48 49 |
# File 'app/models/spree/promotion/actions/free_shipping.rb', line 41 def remove_from(order) order.shipments.each do |shipment| shipment.adjustments.each do |adjustment| if adjustment.source == self shipment.adjustments.destroy(adjustment) end end end end |