Daily updates from Odoo
Tuesday, September 20, 2022
5 changes · master
Enhancements to existing features
Employee appraisal records now show all appraisals for the employee instead of relying on a previous-appraisal navigation flow. This makes it faster and less confusing for HR users and managers to review appraisal history.
Original PR description
The "Previous Appraisal" kind of navigation system was confusing and time consuming. Now all the appraisals of the employee are listed. task-2945849
Manufacturing orders can now automatically consume tracked components when no manual consumption step is required. This reduces unnecessary shop floor steps while preserving manual registration whenever an operation or bill of materials line explicitly requires it.
Original PR description
Without "Auto Consume" : same behaviour as before With "Auto Consume" : NO "Register Consumed Materials" step in the Operation AND NO "Consumed in Operation" on the BoM line : auto-consume component and no step created "Register Consumed Materials" step in the Operation OR "Consumed in Operation" on the BoM line : Does not auto-consume and a consumption step is created Task : 2950200 Community PR : https://github.com/odoo/odoo/pull/98461 -- I confirm I have signed the CLA and read the PR guidelines at [www.odoo.com/submit-pr](http://www.odoo.com/submit-pr)
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.
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