Tuesday, May 5, 2026
3 changes · saas-19.3
Enhancements to existing features
This update adjusts the reporting of COA and TB data to align with Mexican government specifications. This ensures compliance with tax regulations and reduces the risk of reporting errors. The changes are focused on data formatting for improved accuracy.
Original PR description
Reordered COA and TB attributes to be more according on what government expects on those reports task-5422228
This update adds the delivery address to the TicketScreen in Point of Sale, making it easier for staff to quickly see and use customer addresses when scheduling deliveries. This enhancement streamlines the delivery process and improves order accuracy by providing all necessary address information directly on the screen.
Original PR description
In this commit: =============== - Added address details on the TicketScreen when the order preset identification type is `address`. - This helps to easily see the delivery address while scheduling the delivery. Task-5974595 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#257302 Forward-Port-Of: odoo/odoo#251389
This update enhances the website builder's flexibility by allowing users to define custom ratios for background and image shape speeds. Additionally, it automatically sets a default animation speed for image shapes, resolving a previous issue where the minimum speed was applied by default. This improves the user experience and allows for more precise control over visual elements.
Original PR description
This PR makes the following changes:
1. Add support of custom ratio in builderRange
- Earlier, the values in `BuilderRange` component were normalized between 0 and 100 (when `displayNormalizedValue` prop is true) and did not support custom ratios.
- This PR adds support for custom ratios by introducing the `convertorRatio` object prop.
- This is used for background and image shape speed, where values are normalized between 0.33 and 3.
2. Set default animation speed on image shapes
- Previously, when an animated shape was applied to image, the animation speed dataset was not initialized until the user modified it via the sidebar. This caused a fallback to apply the minimum speed value.
- This PR ensures that the animation speed dataset is initialized to "0" by default when an animated shape is applied to an image.
task-6138981