Created
October 8, 2014 18:23
-
-
Save anonymous/4a8e9efcd34d3be70591 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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