Daily updates from Odoo
Tuesday, June 16, 2026
3 changes
2 changes
Features or functions removed from Odoo
This update removes a redundant override related to payment processing through payment terminals. The removal of fast payments using terminals made the previous override unnecessary, streamlining the system. This change improves efficiency and reduces complexity.
Original PR description
We removed fast payments using payment terminals, making the `fastPayments` method override useless. see odoo/odoo#270240 task-6303855
This update removes a redundant, read-only column ('Extra Hours (encoded)') from the HR Attendance view. Previously, this column was introduced as a temporary fix, but it's no longer needed. This change simplifies the user interface and improves clarity.
Original PR description
The 'Extra Hours (encoded)' column was previously made read-only in a stable fix, making its presence obsolete for users in this view. This commit removes the `manual_duration` field column entirely from the view to clear interface clutter. Task: 6253553 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#268873 Forward-Port-Of: odoo/odoo#266921
1 change
Features or functions removed from Odoo
This change removes a recent update that allowed non-manager users to see a list of individuals receiving feedback requests. This reversion addresses privacy concerns and restores the original system where only managers could view this information. The change involves reverting a security rule and updating related views.
Original PR description
With the following PR (https://github.com/odoo/enterprise/pull/102487) we made it possible for non-manager users to see the list of people to whom a feedback was requested. Here, we want to revert this for privacy reasons. Since we are removing an ir.rule, which has noupdate=1, we need to unlink the record. To do this, we create a local upgrade script that runs following the bump in minor version of the module. Task: 6159748