Friday, October 28, 2022
5 changes · master
Resolved issues and error corrections
Employees can now view their time off calendar and list even when working with a company that is not their default. This prevents missing time off entries and access errors in multi-company setups, making HR records more reliable for users who switch companies.
Original PR description
Before this commit, if you are on the time off dashboard calendar of a company that is not set as your user's default company, no time off is displayed. Also, if you try to consult your time offs on the dashboard tree view and if you have one leave with a leave_type without company on a company that is not the one you're logged in, you'll get a access error. This commit fixes both issues. taskID 2893659
Task Analysis records now open in a properly designed form instead of an automatically generated layout. This makes the reporting details easier to read and gives users a more polished experience when drilling into project task data.
Original PR description
**Description of the issue/feature this PR addresses:** Currently for the report.project.task.user model there is no form views defined. so on clicking the tree view, when the form is opened, odoo is providing a default view, which is not currently aligned well. 1.Project -> Reporting -> Task Analysis 2. Click on any record/data in graph view 3. Tree will be opened now and click any record in tree to open form view. **Current behavior before PR:** User is getting a default form view, which is not aligned well. **Desired behavior after PR is merged:** Clean form view will be visible for the user. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The accounting accrued orders wizard now preserves user input when invoice line data is refreshed. This prevents the wizard from becoming unusable during normal accounting workflows, reducing interruptions for finance users.
Original PR description
Narrow cache invalidation to order invoice_lines. Previously, "self.invalidate_cache()' would reset the wizard, rendering it unusable. Task: 2555642
This corrects a typo in an internal method name used by stock transfers. It helps keep the stock module code consistent and easier to maintain, with no expected change to day-to-day user workflows.
Original PR description
issue #97863 previous PR #101825 can't be changed in stable version --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This fixes issues that prevented shared document pages from loading and stopped PDF thumbnails from appearing after a library update. Users can once again open shared document links reliably and see document previews as expected.