Daily updates from Odoo
Tuesday, November 26, 2024
2 changes · master
Resolved issues and error corrections
Planning views now expand grouped dates using the correct time interval for the selected scale, such as day, week, month, or year. This prevents misleading or incomplete planning results when users group schedules by scales other than week.
Original PR description
Before this commit: - _expand_domain_dates is usually using one week as timedelta for all scales leading to incorrect results for any scale different from "week". After this commit: - date_utils.get_timedelta is used to get timedelta according to the scale. task-4269657
This update adjusts an internal performance test limit for creating subscriptions after related feature changes increased the expected number of system queries. It helps keep automated checks aligned with the new behavior without changing what users see.
Original PR description
Due to a new feature to the new feature in the corresponding community PR, the number of query when making subscription is increased due to a series of computes. (passing through event_sale and the new module) task-4283517