Thursday, December 11, 2025
3 changes · 19.0
Enhancements to existing features
The HTML editor now includes a toolbar button for applying inline code formatting to selected text. This makes the feature easier to find and use, especially for users whose keyboards make the backtick shortcut difficult to access.
Original PR description
Currently, the only way to format text as inline code is by using the backtick character. This makes the feature difficult to discover, as the backtick is not a commonly used character and is hard to access on some keyboard layouts. To address this, this commit adds a dedicated button to the HTML editor toolbar. This button wraps the selected text in inline code as if the backtick key was pressed. task-5262719
This update improves internal test feedback by showing when a method override is missing the expected decorator. It helps developers identify the real cause of compatibility issues faster, reducing investigation time during testing.
Original PR description
[IMP] test_lint: improved message during testing (add decorator override)
Before this commit, the error message appeared like this:
```
TypeError: Invalid override in product.template of load, attribute '_api_model' does not match.
Original definition in odoo.orm.models:
def load(self, fields, data)
Incompatible override definition in product:
def load(self, fields, data)
```
After:
```
TypeError: Invalid override in product.template of load, decorators does not match.
Original definition in odoo.orm.models:
@api.model
def load(self, fields, data)
Incompatible override definition in product:
def load(self, fields, data)
```This update allows users to accurately display the account holder's name alongside bank details, even when it differs from the partner's name. Previously, the account holder name was automatically set to the partner's name, which is now corrected to ensure accurate reporting and reconciliation. This change enhances data clarity and reduces potential errors.
Original PR description
Allow changing of the account holder name in case it is different from the partner name which was the computed default. Task-5222712 [Related PR](https://github.com/odoo/enterprise/pull/98572)