Daily updates from Odoo
Thursday, May 29, 2025
6 changes · master
Enhancements to existing features
This update refreshes sample HR data used in salary configuration, referrals, and country-specific payroll demos. It makes demo environments more consistent by reusing standard HR job roles instead of creating duplicate local payroll jobs.
Original PR description
- Added demo data in hr_contract_salary - Added more utm_source data in hr_referral - Archived Experienced Developer US job position in l10n_us_hr_payroll - Some additional demo data added in hr_contract_salary and removed job Technical Lead US and Experienced Developer US in l10n_us_payroll task-4677938
UPS delivery carrier selection is now limited in warehouse transfers so users only see appropriate options. This helps prevent incorrect carrier choices and keeps delivery workflows aligned with recent stock picking changes.
Original PR description
This commit adjusts for the changes in odoo/odoo#203955 Task-4555994
The WhatsApp module's security test was updated to stay aligned with a related change in how message authors are handled. This helps keep automated checks reliable and reduces the risk of false test failures during future updates.
Original PR description
PR community: https://github.com/odoo/odoo/pull/211868 Task-4675767
Spreadsheet dashboards now support a search view, making it easier for users to find and filter relevant dashboard information. Filter values can also show a clear icon, helping users quickly remove a search or filter value when refining results.
Grid view column headers now use locale-aware date formatting, so dates appear in the correct word order and punctuation for each language. This improves readability for international users, such as French users seeing “19 mai” instead of the English-style “mai 19”.
Original PR description
The headers of the columns in the Grid view use a fixed format, which is too restrictive for languages where the order of words changes, or where additional literals like commas may or may not be present. With this commit, we use the Intl API to ensure that we produce a valid result in all languages. For instance, French becomes: > lun. 19 mai instead of: > lun., mai 19 Task-4801503
Users can now hide data point markers on line and combo charts, making charts with many data points easier to read. This improves chart clarity and helps teams interpret trends without visual clutter.
Original PR description
Given a line chart with lots and lots of data points, nothing is visible because the data point dots (data markers) are all mixed together. Add an option to hide the points on the line (line charts and combo charts). Task: 4757733