Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions lib/solidus_subscriptions/checkout.rb
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ def populate_order(order)
end

def finalize_order(order)
# Rerun the legacy promotion handler
# `solidus_promotions` does not need this handler, and will pickup promotions in `order.recalculate`
::Spree::PromotionHandler::Cart.new(order).activate if defined?(::Spree::PromotionHandler::Cart)
order.recalculate

order.checkout_steps[0...-1].each do
Expand Down
3 changes: 3 additions & 0 deletions lib/solidus_subscriptions/subscription_line_item_builder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ def create_subscription_line_item(line_item)
subscription_params.merge(spree_line_item: line_item)
)

# Rerun the legacy promotion handler to pickup subscription promotions
# `solidus_promotions` does not need this handler, and will pickup promotions in `order.recalculate`
::Spree::PromotionHandler::Cart.new(line_item.order).activate if defined?(::Spree::PromotionHandler::Cart)
line_item.order.recalculate
end

Expand Down