Daily updates from Odoo
Friday, August 19, 2022
2 changes
Resolved issues and error corrections
This fixes the text color on bank reconciliation model buttons so labels appear in white as intended. The change improves readability and keeps the accounting interface visually consistent for users.
Original PR description
The text color should be white. task: 2928259
Some preloaded records created from XML were treating HTML content as XML, which could add unwanted headers or wrappers. This update marks those fields correctly so demo and configuration content displays as intended across affected apps.
Original PR description
When a record is created through xml data, its HTML fields should receive a `type="html"` attribute, not a `type="xml"` attribute. When important XML data with XML type instead of HTML type will have 2 differences: - The field value will be prefixed by `<?xml version="1.0"/>` - If the HTML contains multiple root nodes, the value will be wrapped in a `<data/>` tag. See `_fix_multiple_roots()` and the `xml_import` class for more details.