Daily updates from Odoo
Friday, May 24, 2019
3 changes · master
Enhancements to existing features
The search panel is now available in mobile kanban views, making it easier for users to filter and navigate records on phones and tablets. Category navigation was also simplified so tapping a parent category expands or collapses its children, reducing extra steps for mobile users.
Original PR description
Enable SearchPanel on mobile. Task ID: 1917277
Phone and mobile numbers shown on follow-up reports can now be clicked to start a call. If the VoIP app is installed, the call can be placed directly through Odoo, helping users contact customers faster during collections follow-up.
Original PR description
Purpose of this task is, On the follow-up reports, the phone and mobile numbers of the contact are indicated. It'd be nice if the user could directly call those numbers by clicking on them So, I make the phone number clickable on follow-up reports Task ID: 1965862 Pad link: https://pad.odoo.com/p/r.19fcea72ddaba07a569920484e08132e
The grid view can now display and organize records using fields that include both date and time, not just dates or simple categories. This helps users work more accurately with time-based planning and reporting, including cases affected by timezone or daylight saving changes.
Original PR description
This commit makes the grid view supporting `datetime` fields. Before, only `date`, `selection` and `many2one` were supported. To do so, some technical choices has been made: 1/ To fully support DST (Daylight Saving Time) and avoid timezone problem, we use `rrule` lib to generate the grid column period 2/ `read_grid_domain`still return an inclusive domain for the complete grid range: [start, stop], while the column period are [start, stop[ 3/ grid server still return dates in UTC, and are displayed in user TZ by the webclient Task-1982087