Wednesday, June 26, 2024
4 changes
1 change
Enhancements to existing features
This update improves and fixes Odoo's internal testing tools, especially the HOOT test framework used by developers to validate product behavior. It helps catch issues earlier and makes tests more predictable, reducing the risk of faulty changes reaching users.
Original PR description
## Pull Request HOOT (PRHOOT) - part 17 Part 1: https://github.com/odoo/odoo/pull/152930 Part 2: https://github.com/odoo/odoo/pull/153018 Part 3: https://github.com/odoo/odoo/pull/153023 Part 4:…
## Pull Request HOOT (PRHOOT) - part 17 Part 1: https://github.com/odoo/odoo/pull/152930 Part 2: https://github.com/odoo/odoo/pull/153018 Part 3: https://github.com/odoo/odoo/pull/153023 Part 4: https://github.com/odoo/odoo/pull/153203 Part 5: https://github.com/odoo/odoo/pull/153425 Part 6: https://github.com/odoo/odoo/pull/153700 Part 7: https://github.com/odoo/odoo/pull/154054 Part 8: https://github.com/odoo/odoo/pull/154579 Part 9: https://github.com/odoo/odoo/pull/155073 Part 10: https://github.com/odoo/odoo/pull/155639 Part 11: https://github.com/odoo/odoo/pull/156255 / https://github.com/odoo/enterprise/pull/58135 Part 12: https://github.com/odoo/odoo/pull/156869 Part 13: https://github.com/odoo/odoo/pull/158384 / https://github.com/odoo/enterprise/pull/59019 Part 14: https://github.com/odoo/odoo/pull/158916 Part 15: https://github.com/odoo/odoo/pull/160292 / https://github.com/odoo/enterprise/pull/59971 Part 15.5: https://github.com/odoo/odoo/pull/166463 Part 16: https://github.com/odoo/odoo/pull/166311 This pull requests brings various improvements and fixes to Hoot and the Odoo unit test ecosystem. See the different commit messages for more details. Note: these changes are made in stable to avoid having to support multiple versions of the HOOT API. As such, these changes are intended to be strictly limited to unit tests as to not put the rest of the code base at risk. --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
3 changes
Enhancements to existing features
WhatsApp unread message counts are now tracked at the conversation member level instead of on the general thread. This makes unread indicators more accurate for each participant and supports more reliable message status handling.
Original PR description
part of task-3605717 community: https://github.com/odoo/odoo/pull/169404
Payroll contracts can now support fully flexible employees who do not have a fixed working calendar. The calendar is only required when pay work entries are based on a working schedule, reducing setup friction for flexible work arrangements.
Original PR description
Prior to this commit, the field `resource_calendar_id` was a required field. However, with the introduction of fully flexible employee which is defined as an employee without a resource calendar, we needed to drop this requirement. With this commit, the field will only be required when the field `work_entry_source` is set to 'Working Schedule'. A helper text is also added to the field for easier understanding of this feature. related [enterprise PR](https://github.com/odoo/odoo/pull/170117) Task: 3976534
The aged partner balance report filters have been cleaned up to make them easier to use and maintain. This should provide a smoother reporting experience for accounting users without changing the core report behavior.
Original PR description
This commit will do some clean up on the aged partner filters. task-3961256