Daily updates from Odoo
Tuesday, November 23, 2021
3 changes · master
Resolved issues and error corrections
The Sign All action now avoids repeating a step that only needs to happen once. This should make the signing flow more efficient and reduce unnecessary processing without changing the user experience.
Original PR description
When clicking on sign all, currently there is some code being run iteratively that is not required to be run more than once. This PR fixes this issue.
The project cost and revenue tracking option now remains visible in Project settings when Project and Invoicing are installed. Once Accounting is installed, the option moves to Accounting settings as expected, helping users find and enable project financial tracking consistently.
Original PR description
[FIX] project_account: fix the analytic accounting setting Before this fix, the "Track costs & revenues by project" option is missing from the project module if both project and invoicing are installed. Now, this setting is shown on the project module until accounting is installed, as expected. It is then shown in the settings of the account module. task-2695812 See odoo/odoo#80045 See odoo/upgrade#3051 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The eLearning reporting screen now opens the dedicated course reporting list instead of the standard course list when the Enterprise module is installed. This helps users see the right reporting information without confusion or extra navigation.
Original PR description
PURPOSE Show the correct course reporting list view in e-Learning. SPECIFICATIONS By default (in `website_slides`), for course reporting action, we have `slide_channel_view_tree_report` bound to the action. But once `website_slides_enterprise` is installed, it binds dashboard view to the same action. Due to this, now the default course list view (`slide_channel_view_tree`) is displayed with this action instead of the one dedicated to reporting action. This commit fixes the issue by binding the proper views to the course reporting action. LINKS PR #22072 Task 2607467