Sunday, October 19, 2025
1 change · saas-18.2
Resolved issues and error corrections
This fix ensures sales payment validation transactions complete the standard follow-up processing instead of accidentally skipping part of it. It preserves the intended behavior of not sending certain validation emails while avoiding missed processing steps that could affect confirmed transactions.
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