Sunday, October 19, 2025
1 change · saas-18.3
Resolved issues and error corrections
This fixes an issue where some confirmed validation payments in Sales skipped part of the normal post-processing flow. Businesses benefit from more reliable order and payment handling while still avoiding unnecessary validation emails.
Original PR description
Versions -------- - 18.0+ Issue ----- `super` isn't called on `_post_process` for confirmed validation transactions. Cause ----- A fix that prevented the sending of mail for validation transactions added a `continue` in a loop, which skips over the `super` call in the loop. Solution -------- Instead of `continue`, add an `if` check to see if we want to send mail. Forward-Port-Of: odoo/odoo#231972