Daily updates from Odoo
Tuesday, September 23, 2025
2 changes · 17.0
Enhancements to existing features
The web interface library used by Odoo has been updated to a newer version. This helps keep the user interface foundation current and may bring small stability and compatibility improvements across web screens.
Original PR description
Update the OWL lib. Release notes: https://github.com/odoo/owl/releases/tag/v2.8.1 Forward-Port-Of: odoo/odoo#228092
Italian electronic invoice imports now keep the document type from the original XML and no longer rely on separate type variants that duplicated the same document code. This makes invoice and bill handling more consistent when the same FatturaPA document type can apply to either sales or purchases.
Original PR description
In the FatturaPA XML, the Document Type (Tipo Documento) doesn't indicate the direction of the journal entry. A `TD01` can be an `in_invoice` or `out_invoice` depending on whether the company is set to be the seller or the buyer. That's what we consider when importing invoices from the EDI. - saved the `l10n_it_document_type` from the imported bills' XML - removed the filter in the view - removed the `l10n_it_document_type` duplicates that just differed by `l10n_it_document_type.type` - updated the invoices to point to the original `l10n_it_document_type` if there were duplicates We will have to remove the field in `master` See odoo/upgrade#8484