Friday, September 25, 2020
7 changes · master
Resolved issues and error corrections
Expense list headers are now limited to the 'My Expenses' area instead of appearing across all expense list and kanban views. This keeps other expense screens cleaner and reduces confusion for users who do not need that header context.
Original PR description
Expense header was displayed in all tree & kanban views. This commit removes the header in other views than 'My Expenses' menus because the expense header should only be visible in the 'My Expenses' menu Task id: 2341766
Activities without a written summary no longer appear as “False” when exported to XLS or CSV. Instead, the export uses the activity type, such as Email, To Do, Call, or Meeting, matching what users see in the list view.
Original PR description
PURPOSE: Currently, activities having blank summary field exported in xls or csv display False. Instead of that, need to display the activity type like Email, To Do, Call, Meeting, etc. as its display in the list view. SPEC: We have override the name_get method and set the summary as a default value and if summary not found then it will take the activity type name. Task : 2254851
The Research & Development demo project now has timesheets enabled by default. This keeps the sample project consistent with its existing timesheet entries, making demo and testing data easier to use.
Original PR description
Install project and timesheet with demo data in project allow_timesheets is disable with this commit now that allow_timesheets is enable for Research & Development. Links PR #58224 Tasks: 2342606
This fixes an issue where signing-related pop-up windows on the website could appear partly hidden behind the top navigation bar and not centered. Users can now see and interact with the full modal more reliably, improving completion of website signing flows.
Original PR description
Before this commit,the part of the modal is hidden behind the systray and the modal is not centered. In this commit, we have made the changes as expected. task id: 2320303 PR: 56056
Dragging content near the right editing panel no longer causes the page to scroll unexpectedly. This makes page editing more predictable and reduces frustration when arranging content.
Original PR description
* Prior to this commit, the auto scroll is triggered when dragging items over the right panel (if the dragged item is close to bottom or top). * After this commit the auto scroll is is no more triggered as long as the dragged item is over the right panel area.
The website off-canvas menu now displays correctly when a page uses a fixed or sticky header. This prevents a broken navigation experience for visitors and improves usability on affected website layouts.
Original PR description
Before this commit the layout of the off-canvas menu was broken with an affixed header. task-2312878 closes odoo/odoo#57442 X-original-commit: 6e1c2ad5db69fe7eaa8f53c8da8375435b59f486
This fix ensures the page scrolls correctly after users add certain dynamic website snippets that are initially hidden. It improves the website editing experience by preventing confusing or failed scrolling behavior when placing content.
Original PR description
Fix the scroll when the snippet is the dynamic one because it did not work as we tried to get the offset of an element with the d-none class. Remove the scrollValue variable because we don't need it anymore. It was used before the code was reviewed in a previous commit. task-2312878 closes odoo/odoo#58486 X-original-commit: e6d32bc4bfa7f0c3c2f82c2eb99a562c1cb93d83