Friday, December 12, 2025
5 changes
1 change
Enhancements to existing features
This update enhances the formatting of tax amounts for the Co-dian localization module within Odoo Enterprise. It standardizes the float format used in account edi XML files, ensuring accurate tax calculations and reporting for Co-dian businesses. This change improves the reliability of financial data related to this specific localization.
Original PR description
Forward-Port-Of: odoo/enterprise#101886 Forward-Port-Of: odoo/enterprise#101288
1 change
Enhancements to existing features
This update enhances the formatting of tax amounts in invoices for the Co-dian localization module. It standardizes the float format used in account_edi_common, ensuring accurate and consistent reporting for tax calculations related to Co-dian regulations. This improves the reliability of financial data for Co-dian users.
Original PR description
Forward-Port-Of: odoo/enterprise#101288
1 change
Enhancements to existing features
This update enhances the website generator's efficiency by proactively verifying URLs before sending requests to the scraper. This prevents unnecessary requests to invalid or blocked URLs, improving performance and reducing potential errors. The check is now performed on the IAP server for security and efficiency.
Original PR description
This PR adds the client side verification of an url for the request we make to generate a website using the website scraper. **The goal is to filter all the unwanted requests (invalid urls, banned urls) before launching the scraper process.** The check is done on the IAP server, and retrieved on the DB. The reason is that we don't want to send a request directly from the db [as this was already discussed](https://github.com/odoo/enterprise/pull/92724). Since the IAP server is also the one that will eventually do the scraping request, it also makes more sense that it is the one to check (to avoid the case where odooDB has access to an URL and IAP server does not). Previous PR was in master, but since we only change js component, we can modify 19.0 directly. Link : [Master PR](https://github.com/odoo/enterprise/pull/99433) Forward-Port-Of: odoo/enterprise#100967
2 changes
Enhancements to existing features
This update adds a message within the Account Online link, allowing users to easily revoke consent for the Basiq widget. This provides greater control over data sharing and aligns with privacy best practices. It redirects users to a dedicated page for managing their Basiq widget permissions.
Original PR description
This commit will add a message on the account online link chatter for the basiq provider. This message will allow the user to be redirected to an odoofin page with a button to revoke his consent on a basiq widget task-5187621 Forward-Port-Of: odoo/enterprise#101801
This update introduces a mechanism to customize the order lines used for calculating sales order amounts. This allows third-party developers to tailor how order totals are computed, providing greater flexibility for specialized sales scenarios. It ensures that order amounts are calculated accurately based on specific business needs.
Original PR description
This allows to change the record set of order lines which are used by `sale.order` `_compute_amounts` by custom addons