Friday, April 9, 2021
3 changes · master
Enhancements to existing features
The error shown when Odoo cannot find a configured add-ons folder now includes the full folder path. This makes configuration problems easier and faster to diagnose, especially when relative paths are used from different working directories.
Original PR description
Show full path to not found addons folder to ease debugging. Right now if you misconfigure the addons path, the error message only shows the configured folder name, without the full path. Showing a full path in the error makes debugging much easier, especially when using relative addons paths like: '../my-addons'. Often users try to call `odoo-bin` from different folder then the one where `odoo-bin` is located (assumming that relative paths will be resolved relatively to odoo-bin location and not the current working directory). Showing full path will help them debug and spot the error. Current behavior before PR: error: option --addons-path: no such directory: '../non-existing' Desired behavior after PR is merged: error: option --addons-path: no such directory: '/home/user/Odoo/non-existing' -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The employee contract report's "Last 365 days" filter now includes the current day. This makes recent contract information visible immediately and avoids users missing today's data in the report view.
Original PR description
Include "today" in the "Last 365 days" filter. TaskID: 2477309
The Project Forecast planning action has been moved from the bottom of each project card into the card's Views dropdown. This keeps project cards cleaner and makes room for more useful information while preserving access to planning.
Original PR description
Before this commit, we add differents buttons in the bottom of each card with a certain condition, the problem is the lack of place to display more and more information in each project kanban card. In community,the dropdown menus are reviewed for each project kanban card. Two sections is added one for 'Views' and the other for 'Reporting'. This commit add a button called 'Planning' in the 'Views' section rather than in the bottom of the project kanban card. task-2458017 Community PR: odoo/odoo#68343