-
-
Notifications
You must be signed in to change notification settings - Fork 158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve Order Confirmation #2740
Comments
Thanks for the quick feedback. I'm not sure about that. I guess we're dealing with a logical issue here: These states ( In #2481, I've added the "processing" part, because some payment gateways only changes to "processing" and 20 min later, they're sending "paid" by server API. If we're removing the "processing", the user never reaches the "thank you" page. References: However, we could remove the
Everything else should be fine. |
@solverat No, Order Confirmation means what it says, it confirms the order to send out the confirmation email. If you have a special payment provider where "processing" means it's fine, then you can create your own Extension that then confirms the order. So I'd say we remove the processing from the confirmation again. |
Yes, that's why I've suggested removing the
|
Introduction
Within some projects, we struggle with order confirmation state / notification.
Per default, there is this condition within the notification to trigger the order confirmation message:
The order state "confirmed" will be applied, when a payment changed to one of these states:
Most of the time, this is fine (especially when using credit card gateways).
Issue
Some of our projects are using a lot of different gateways:
All of them are coming with their own "state logic" and we cannot rely on the order state "confirmed" only.
Examples:
Possible Solution
It's quite obvious, we cannot rely on the order state "confirmed". But what shall we do?
Notification Rules
Currently, we cannot switch to different notification rules, because some conditions are missing:
These must be available on rule type "order"
Of course, happy to hear better / other ideas regarding the "order confirmation dilemma" :)
The text was updated successfully, but these errors were encountered: