Daily updates from Odoo
Tuesday, May 16, 2023
3 changes · master
Resolved issues and error corrections
The automated walkthrough used to check the Project app has been updated after recent interface changes caused it to fail. This helps keep project features reliably tested and reduces the risk of regressions reaching users.
Original PR description
Before this commit, the `project_enterprise_tour` JS tour failed due to some recent changes (new design and auto resize hook used for task name field). This commit fixes the `project_enterprise_tour` to be able to test project app with that JS tour. runbot-20763
HR teams can now run salary simulations for part-time work without first changing an employee contract or manually creating a payslip. This makes compensation planning faster and less error-prone when assessing reduced working schedules.
Original PR description
Purpose ======= There is no easy way to make a partial simulation without having to create manually a payslip after having modified the contract itself.
Fixed an issue where Knowledge template options were incorrectly shown in HTML fields across Odoo. Users will now only see these template choices where they are relevant, reducing confusion in other areas.
Original PR description
This commit fixes a bug where the options to load templates would appear in every html field inside Odoo. This bug is caused by the patch inside `knowledge_article_html_field` which assigned the component to htmlField directly instead of using a brand new object. This commit fixes the bug by creating a new Object based on htmlField using the Object.create() function. task-3326611