Thursday, June 11, 2020
2 changes · master
Resolved issues and error corrections
This fix prevents an error from appearing in Project Forecast when the optional Timesheets feature is not installed. It ensures users can open and use project-related views without being blocked by a missing optional setting.
Original PR description
This change https://github.com/odoo/enterprise/commit/d44ddf3c3554b008df118ea0b6c97505541f6725#diff-4d9fd2c814ce5bac25cfc074b1e5b6c9L42 returns traceback because timer_setting is from hr_timesheet witch is optionnal. Task-2273687
This fixes an issue where selecting a menu item from the home screen search bar caused an error instead of opening the chosen menu. Users can now navigate from search results normally, reducing disruption when accessing apps or menus.
Original PR description
Before this commit, it throws error when user clicks on any menu from home menu search bar, as it was just trigger the menu_clicked from openMenu, so it's impossible to find ev.data in it. After this commit, it opens the menu from menu search bar.