Friday, December 27, 2024
4 changes · 17.0
Resolved issues and error corrections
This fixes an issue in Mass Mailing where the link editing popup could appear behind the sidebar when editing links near the edge of a template. Users can now access link options reliably without the popup being hidden, making email template editing smoother.
Original PR description
Current behavior before PR: - In mass mailing, when the link popover opens, clicking on a link that is available near the edge of the mailing template beside the sidebar would sometimes cause the popover to appear behind the sidebar. Desired behavior after PR is merged: - Clicking on a link near the edge of the mailing template now ensures that the link popover opens correctly within the body of the mailing template. task-4237091
The media dialog now follows report editing rules by hiding the video tab when videos are not permitted. This prevents users from accidentally adding unsupported videos to reports, keeping report content consistent and reliable.
Original PR description
**Behavior before PR:** In web_studio video command is not allowed in report. However, user can still upload video from media dialog using video tab. **Behavior after PR is merged:** This commit aims to remove videos tab from media dialog if video command is disabled. task-4285231 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update addresses a technical issue where an outdated element was being used in the website's sales functionality. This change ensures the website's sales features continue to operate correctly and avoids potential problems with future updates. It's a routine maintenance fix.
Original PR description
This commit is a backport of https://github.com/odoo/enterprise/commit/697d69d85e9812bdb2329d7604f57c940ae70135 Community pr: https://github.com/odoo/odoo/pull/187674
This update corrects a technical issue preventing Amazon from correctly receiving shipping information, which was causing warning messages. We've now included the shipping method (e.g., 'Express' or 'Parcel') alongside the carrier name, ensuring Amazon has complete details and avoiding disruptions to order fulfillment.
Original PR description
Currently, while we send the carrier and the tracking number, we don't send the shipping method. While this doesn't block anything, this lead to Amazon sending warning about incomplete shipping information. Now, we will send: - Carrier name : the delivery_type if any relevant, else the carrier name as fallback. eg: "DHL" - The shipping method: the carrier name. eg: "DHL Express" or "Parcel" opw-4393663 Forward-Port-Of: odoo/enterprise#76156