Monday, July 22, 2024
5 changes · 17.0
Resolved issues and error corrections
Partner assignment website links now point directly to the final readable page address instead of first going through an extra redirect. This makes navigation slightly faster and cleaner for visitors, with no expected change to business workflows.
Original PR description
Avoid extra redirect, use slug directly instead.
This update adds a warning when deprecated Peppol electronic invoicing address codes are used. It helps businesses avoid future compatibility issues with updated OpenPeppol rules while keeping current stable behavior unchanged.
Original PR description
EAS codes 0037 and 0215 have been deprecated as of OpenPeppol eDEC codelists v8.9 https://docs.peppol.eu/edelivery/codelists/changelog.html We will place a warning in stable and remove it in master. no task
This fix updates Point of Sale test behavior so internal notes can be left empty without causing issues. It helps ensure smoother validation of scenarios where staff intentionally add or save orders with no note text.
Original PR description
This commit modifies the AddInternalNotes tour method to support empty internal note. Related enterprise PR: https://github.com/odoo/enterprise/pull/66145 sentry-5494183916 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Combo products in Point of Sale will no longer keep taxes assigned to the parent product when they are created or converted. This prevents misleading tax-included price displays and ensures taxes are calculated from the actual items selected in the combo.
Original PR description
Currently, if you create a combo product, or modify an existing product into a combo product, the previous tax field is saved. Steps to reproduce: ------------------- * Create a new storable product with a tax set * Modify the product type to `Consumable` * Save > Observation: Next to the price we see "(=... tax incl) Why the fix: ------------ Combo products are not meant to have taxes set. It is confirmed by the fact that the field becomes invisible when we have combo products. Taxes are computed once the product is added to the cart depending on the taxes of the products chosen. opw-4004978
Follow-up email templates now correctly honor default CC recipients. This ensures copied contacts receive customer follow-up reminders as intended, reducing missed communications and manual follow-up work.
Original PR description
Before this commit: ------------------------- The issue occurs when setting a default CC in the email templates for follow-up emails. When the follow-up email is sent, the CC recipient does not receive the email. Only the customer receives it, and the CC email is ignored. After This commit: ----------------------- The CC recipient should automatically receive the email whenever a follow-up is sent to the customer. Task: 3516032