Monday, July 7, 2025
2 changes · 17.0
Resolved issues and error corrections
Availability reminder emails for out-of-stock products no longer include a product price that could be shown without taxes. This prevents customers from receiving misleading price information when the website is configured to display tax-included prices.
Original PR description
Versions -------- - 17.0+ Steps ----- 1. Configure website to display prices tax-included; 2. disable selling out-of-stock products; 3. go to an out-of-stock product page; 4. request a reminder email; 5. replenish product stock; 6. run the `_send_availability_email` action; 7. check email that was sent. Issue ----- The price display in the email does not include taxes. Cause ----- The email only checks the `list_price` defined on the product. Solution -------- Don't include the price in the email: - On stable: hide the element to avoid breaking xpaths - On master: remove the price element from the email template opw-4712613
VoIP now removes parentheses when cleaning phone numbers, helping calls work correctly with more common number formats. This reduces issues when users enter or receive numbers formatted with brackets, such as area codes.
Original PR description
Add parentheses to the list of characters that are stripped from phone numbers. Part of task-4891947. Forward-Port-Of: odoo/enterprise#89551