Daily updates from Odoo
Monday, June 16, 2025
3 changes
2 changes
Enhancements to existing features
This update standardizes date values to use full ISO formatting, ensuring months and days are always written with two digits. It reduces the risk of date parsing errors in payroll, accounting, appointments, manufacturing, and localization processes.
Original PR description
ISO format does not accept single digit months or days. odoo/odoo#214350
This update adds testing to confirm that AI-generated HTML field content is properly cleaned before use, helping prevent unsafe or unwanted content from being stored or displayed. It also increases the API call timeout, making AI field processing more reliable when responses take longer.
Original PR description
Purpose ======= Add test about sanitization for HTML properties. Increase the timeout limit when calling the API. Task-4712395
1 change
Enhancements to existing features
The Asset app now hides the Add Properties option when it cannot be used on asset model records. If users try to add properties to an asset without an associated asset model, they now see a clearer error message, reducing confusion and support effort.
Original PR description
This commit introduces two improvements to the 'Add Properties' button in the cog menu of the Asset model: 1. Hides the button if the record has state = 'model'. Previously, the button was available but no action was triggered. 2. Raises an error message if the button 'Add Properties' is clicked in an asset without an asset model associated. Previously, only a warning with the unclear message "You need edit access on the parent doument to update these property fields" was shown. task-4822091