Thursday, July 9, 2026
2 changes · saas-19.2
Enhancements to existing features
Event teams can now print attendee badges in A4 PDF format directly from the registration desk. This also extends badge printing support to Point of Sale, helping on-site teams manage event check-ins and badge distribution more flexibly.
Original PR description
This PR adds the support for A4 pdf badge printing through the registration desk. Requested for OXP in Kenya See https://github.com/odoo/odoo/pull/275021
The bank reconciliation widget now loads less unnecessary data when opened, especially on very large databases. This should make reconciliation screens appear faster and feel more responsive for accounting users.
Original PR description
When opening the bank rec widget on huge DB's, it takes
a lot of time to load everything.
This commit aims to improve the loading performances by
removing some JS fields:
1 - reconciled_lines_ids: We only use the first element of
this recordset in JS, so we add a new computed field
to only send 1 record to the JS
2 - hasAttachment: replace the long JS computation of
`get hasAttachment` with a python computed field.
3 - Replace matched_credit_ids and matched_debit_ids
with exchange_diff_partial_ids.
Linked:https://github.com/odoo/odoo/pull/269119
task-6275945
Forward-Port-Of: odoo/enterprise#119557