Daily updates from Odoo
Friday, March 14, 2025
5 changes · master
Enhancements to existing features
This update aligns internal naming for how project task filters are optimized with a related platform change. It helps keep the Enterprise codebase consistent and maintainable without changing day-to-day user workflows.
Original PR description
Companion of https://github.com/odoo/odoo/pull/201587.
Odoo is changing its company information provider from Clearbit to Dun & Bradstreet to improve the reliability of partner and invoice data enrichment. Company logos will still come from Clearbit for now, while the main business data is fetched through the updated provider routes.
Original PR description
Community PR: https://github.com/odoo/odoo/pull/196373 Enterprise PR: https://github.com/odoo/enterprise/pull/78489 Upgrade PR: https://github.com/odoo/upgrade/pull/7192 IAP PR: https://github.com/odoo/iap-apps/pull/984
Rental product checkout now avoids repeating stock checks already handled by the standard ecommerce flow. This simplifies the availability logic and should make cart validation faster while keeping stock controls consistent.
Ecuadorian companies can now record required dividend details when creating purchase withholdings for shareholder profit payments. This helps ensure electronic withholding documents and ATS reports include the payment date, related company income tax, and fiscal year required for compliance.
Original PR description
Implement dividens in purchase withholdings. When a company pays its shareholders some profits from the closed fiscal period, there is also a Purchase WTH needs to be created. Fields required in…
Implement dividens in purchase withholdings. When a company pays its shareholders some profits from the closed fiscal period, there is also a Purchase WTH needs to be created. Fields required in withholding wizard, XML and ATS report - **Dividend payment date:** it can be different to withhold date. It must be showed in ATS **`<fechaPagoDiv>`** and XML **`<fechaPagoDiv>`** - **Dividend income tax:** value of the Income Tax paid by the company that corresponds to the reported dividend. The computation of this value can be quite varied because of several parameters (exemptions, non-deductible expenses, deferred taxes, shareholder participation,annual withholding table with fixed withholding for the basic fraction, etc...). It must be showed in ATS **`<imRentaSoc>`** and XML **`<imRentaSoc>`** - **Dividend fiscal year:** The fiscal year in which earnings on the reported dividend are generated. The company could pay previous periods. It must be showed in ATS **`<anioUtDiv>`** and XML **`<ejerFisUtDiv>`** - **Show fields dividend:** Computed field to show the dividends fields. latam-865
Duplicating Helpdesk tickets and Planning shifts now avoids assigning archived users or resources. This prevents work from being accidentally assigned to people or resources that are no longer active, improving data accuracy and day-to-day operations.
Original PR description
_*=planning ### Before this commit: In Helpdesk, archived user are copied into new tickets when a ticket is duplicated. In Planning, archived resources are added to new shift entries during duplication and recurrence. ### After this commit: In Helpdesk, archived user are removed from new tickets when duplicated. In Planning, archived resources are excluded from new shift entries during duplication and recurrence. task-4419770