In my custom module, I want to take some action when various stages of the checkout process are completed. I am using the Magento event dispatch system to achieve this. Unfortunately the event dispatch system in the core product seems a bit haphazard. One checkout stage is when the user enters their billing address. When using the one page checkout method, I can have an observer for the event:
controller_action_postdispatch_checkout_onepage_saveBilling
I am not sure if that is the best event to signify a billing address has been entered, but it seems to work ok.
When using the multishipping checkout process, I can’t see a relevant event I can listen for. Billing address and Payment method are on the same checkout stage. The most relevant event I can come up with is:
controller_action_postdispatch_checkout_multishipping_overview
which is also fired on Place Order.
Is there a better way of doing this?
Thank you.