Sunday, August 9, 2026
2 changes · 19.0
Resolved issues and error corrections
The Mexican banking CLABE field now shows a complete, clickable help link to the relevant Spanish Wikipedia article. This makes the guidance easier to access for users configuring Mexican bank account information, with no change to accounting or banking behavior.
Original PR description
## Merge method squash --- ## Problem The `help` text of the `l10n_mx_edi_clabe` field in `addons/l10n_mx/models/res_bank.py` contains an incomplete URL: ```python # Before help="Standardized banking cipher for Mexico. More info wikipedia.org/wiki/CLABE" ``` This URL is missing: 1. The **protocol** (`https://`), making it non-clickable as a hyperlink in the Odoo UI tooltip 2. The **Spanish subdomain** (`es.`), which is more appropriate given that CLABE is a Mexican banking standard and the Spanish Wikipedia article is more complete and relevant for Mexican users ## Fix ```python # After help="Standardized banking cipher for Mexico. More info https://es.wikipedia.org/wiki/CLABE" ``` ## Impact - No functional change to business logic - Improves the developer/user experience when reading field tooltips in the Odoo backend - Consistent with the `es_419.po` translation which already references `es.wikipedia.org/wiki/CLABE` ## Files changed - `addons/l10n_mx/models/res_bank.py`
Tax return deadline dates in email templates are now shown using the recipient user's locale settings. This prevents confusion caused by unfamiliar date formats and makes deadline communications clearer for users in different regions.
Original PR description
The date was not formatted according to the user's locale.