Daily updates from Odoo
Wednesday, September 11, 2024
2 changes · 17.0
Enhancements to existing features
This update improves the SEPA payment processing by making the UETR field display more intelligently based on the payment method and PAIN format version being used. This ensures users only see relevant fields for their specific payment configuration, reducing confusion and streamlining the payment entry process.
Original PR description
This commit will allow to hide the sepa uetr depending on the pain version and the payment method. task: 4167726
eBay recently changed how they format product URLs in their system, which was breaking the ability to match products correctly in Odoo. This update improves the matching process by using the product variant name as a backup method when the URL doesn't match. This ensures eBay orders continue to be processed smoothly even as eBay changes their technical formats.
Original PR description
eBay recently changed the URL they send in the viewitemURL. We found 3 different ways they send it, but there might be more. And the new ones can only be matched to the product template, not variant. We shouldn't have relied on this URL to match products in the beginning, but we can't refactor this flow in stable, instead, we fallback on the name of the variant, as it was created from eBay. opw-3934127 Forward-Port-Of: odoo/enterprise#69152