Daily updates from Odoo
Thursday, January 8, 2026
2 changes
Features or functions removed from Odoo
This update removes a feature that automatically generated vendors from Stripe Issuing based on French vendor data. The system incorrectly used SIREN numbers instead of VAT numbers, leading to validation errors. Since this feature was only triggered in a specific scenario and lacked a suitable field, it has been removed for stability and accuracy.
Original PR description
In the original Stripe Issuing implementation, it was believed that in the specific case where a vendor is located in France, the `tax_id` received from Stripe in the authorizations and transactions would be the VAT number. In reality, the number received is the SIREN which fail VIES validation. As we only try to create a vendor in that very specific case, and there is no field for the SIREN (`company_registry` is the SIRET), we simply remove the feature altogether. NOTE: Remove method in master
This update removes temporary fields added during testing of the l10n_at_pos module. These fields were mistakenly left in place after a previous update. This ensures the module functions correctly and aligns with standard Odoo configurations.
Original PR description
Some fields were temporarily added or made editable to easily test all possible flows. They were mistakenly left in place during the merge. This commit removes them or restores the proper readonly behavior. [PR #100583](https://github.com/odoo/enterprise/pull/100583)