Daily updates from Odoo
Tuesday, September 20, 2022
5 changes
Resolved issues and error corrections
This fix restores the ability to expand detailed lines in Colombian ICA, IVA, and Fuente tax reports. It ensures users can view the report breakdowns needed for review and compliance after a recent reporting framework change.
Original PR description
After the reportalypse it was not possible to expand lines in l10n_co reports because the expand functions should start with the specific prefix `_expand_unfoldable_line_`. Renaming the methods to fix the reports.
Fixes an error that occurred when users selected a color for document tags while sharing a document. This keeps the document sharing flow stable and avoids interruptions for users managing shared document labels.
Original PR description
Reproduction steps - Install documents app - Select the document - Shere the document - Click on the documents tags - Select the color task-2978632
Financial report sections that can be expanded now correctly show all nested lines, not just the first level. This helps users view complete report details without missing hidden sub-sections.
Original PR description
Until now, if a section line in a report had the attribute `foldable` set to `True`, the unfolding was not done properly. Only the first children were unfolded. But these children often had children of their own, and they remained invisible. This PR fixes the issue. At the same time, we also make sure that the `unfoldable` key in the static line's dict only carries a boolean instead of the records themselves (which was useless). task-2971538
The Knowledge app trash experience has been cleaned up to make deleted articles easier to find, understand, and manage. Users now see clearer labels, better mobile controls, a dedicated trash list with deletion dates, and archived or trashed articles are protected from accidental editing.
Original PR description
- Display the buttons 'Add Cover' and 'Add icon' in mobile (no hover needed to display them) - Put "remove from trash" above the copy btn in burger menu - Rename "Remove from trash" into "Delete" - Reduce height of 'Article Trashed' alert and reword the alert. - Add list view for trashed articles and display date of deletion - Rename the action button that opens the Trash list view into "Open the Trash" and restyle it as a link button. - Rework the action helper when there is no trashed article to display Task-2980199
This fixes an issue where Planning screens could place fields incorrectly because inherited views matched the wrong company field. Users should now see Planning list and form layouts in the intended order again.
Original PR description
Prior to this commit and since odoo/enterprise#29592 the `xpath` that are using `company_id` in the views that inherit `planning_view_tree` and `planning_view_form` are no more working as the `xpath` targets the first match. This commit fixes this issue. task-2989163