Daily updates from Odoo
Sunday, August 17, 2025
2 changes
Resolved issues and error corrections
The Colombian DIAN invoicing module now keeps its invoice and credit note email templates when the module is upgraded. This prevents businesses from losing configured DIAN sending templates and avoids disruption to electronic invoicing workflows.
Original PR description
**Steps to reproduce:** - Install l10n_co_dian => "Invoice (DIAN): Sending" and "Credit Note (DIAN): Sending" email templates are created - Upgrade l10n_co_dian **Issue:** "Invoice (DIAN): Sending" and "Credit Note (DIAN): Sending" are deleted. **Cause:** Email templates are reset during a module upgrade. These DIAN email templates are not defined in a XML, but created by a python function. This function is only called during installation. **Solution:** Set the "nopupdate" to True for these email templates to prevent them to be reset during the module upgrade. opw-4964347 Forward-Port-Of: odoo/enterprise#91008
Users can once again see the Export and Insert in spreadsheet options when selecting documents from list or kanban views. The actions remain hidden only while previewing a document, preventing clutter without blocking everyday document workflows.
Original PR description
Issue: When clicking on the action dropdown in the kanban and list view, the actions 'Export' and 'Insert in spreadsheet' did not appear anymore. Cause: This was the result of a previous fix that aimed to hide those actions when a user is in the preview of a document. This fix unintentionally also removed them when a user is selecting documents in the kanban and list view. Solution: Adapt the initial omit fix to only hide the actions when a document is in preview. Task-4898152 Forward-Port-Of: odoo/enterprise#92449 Forward-Port-Of: odoo/enterprise#91926