Daily updates from Odoo
Wednesday, September 4, 2024
6 changes
Enhancements to existing features
Users can now search UNSPSC product classification records by code as well as by name. This makes it faster to find the right classification when users know the code prefix or exact code, reducing lookup time and improving accuracy.
Original PR description
[IMP] product_unspsc: add search by code to UNSPSC view Searching a UNSPC by name is not always the easier, as the codes have prefix, being able to filter them by code would be helpful Add search view with name and code for UNSPSC task-4130458
Approval users can now see and use request status in the approval request search view. This makes it easier to find and organize approval requests by their current state.
Original PR description
before this commit, approval request status was not added in approval request's search view after this commit, request status is added
Users can now select all matching documents even when grouped list sections are folded and no records are visible. Actions such as delete or archive remain available only when at least one document record is present, helping avoid unsupported operations.
Original PR description
This commit is an adaptation of the documents list view w.r.t. the changes done in https://github.com/odoo/odoo/pull/178779. We can now have a selection with no visible records (the whole domain is selected in that case). However, the delete/archive document logic requires at least a record. We thus only enable the feature when there's one. Task~4150362
The self-order kiosk setup now hides IoT Box launch buttons when no connected or compatible IoT Box is available. This avoids showing staff options that cannot be used, making setup clearer and reducing confusion.
Original PR description
If no IoT Box was connected to the db, or none was compatible, we could still see the buttons to open Kiosk on IoT Boxes. We now can't.
Task cards in Project and Field Service now show planned dates in a more compact format. This makes kanban cards easier to scan by removing unnecessary seconds, repeated dates, or hours depending on whether the task starts and ends on the same day.
Original PR description
Currently, the planned dates of a task takes too much space on the kanban card and could be rendered on 2 lines instead of one. The goal of this task is to reduce a bit the spaces taken by the planned dates in the kanban card of tasks. More specifically, we remove the seconds from the dates to gain space and we handle the following cases: - When the begin date and end date are the same: We shorten from this "08/23/2024 09:15:00 -> 08/23/2024 11:00:00" to this "08/23/2024 09:15 -> 11:00" (remove the end date) - When they are not: We shorten from this "08/23/2024 09:15:00 -> 08/30/2024 11:00:00" to this "08/23/2024 -> 08/30/2024" (remove the hours) task-4120069
The digest content now includes tips for Knowledge and WhatsApp to showcase new version 18 capabilities. This helps users discover relevant features directly from regular digest communications.
Original PR description
Add knowledge and whatsapp tips to showcase the new features added for v18. Related: https://github.com/odoo/odoo/pull/174316 Task-3762938