Sunday, October 19, 2025
1 change · saas-18.4
Resolved issues and error corrections
Sales payment validation now avoids skipping required follow-up processing after a transaction is confirmed. This keeps validation emails suppressed where intended while ensuring the rest of the sales confirmation workflow still runs correctly.
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