Tuesday, March 17, 2026
1 change · 17.0
Enhancements to existing features
This update ensures Odoo's SEPA XML transactions comply with the latest ISO 20022 standard by using a structured address format. Previously, addresses were unstructured, but now they utilize hybrid tags for country, city, and postal code, improving data accuracy and compatibility with SEPA regulations. Validation has also been added to guarantee country and city information is present.
Original PR description
According to the ISO 20022 XML standard, any address included in SEPA interbank messages must be in a structured or hybrid format. Before this commit: --- - `<PstlAdr>` generation in SEPA XML used unstructured `<AdrLine>` tags. In this commit: --- - Generate <PstlAdr> with hybrid tags `<PstCd>`, `<TwnNm>`, `<Ctry>` and `<AdrLine>` in compliance with ISO 20022 requirements. - Added validation to ensure both country and city are present for partners and employees. --- task-5003410