Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save holyketzer/0b40c3d9d8a14d376ad4 to your computer and use it in GitHub Desktop.
Save holyketzer/0b40c3d9d8a14d376ad4 to your computer and use it in GitHub Desktop.
marketplace_and_spree
Spree::CheckoutController.class_eval do
def update_with_marketplace_sync
if @order.completed?
# Тут используешь @order или @current_order пока он ещё не обнулён и всё другое
end
update_without_marketplace_sync
end
alias_method_chain :update, :marketplace_sync
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment