Wednesday, July 17, 2024
4 changes
Enhancements to existing features
The addenda selection for Mexican electronic invoicing is now shown in the Accounting area of a contact instead of Sales. This makes the setting easier to find where users expect invoice-related configuration to be.
Original PR description
Users (both technical and non-technical) expect to see the configuration for addendas under Accounting as they are more related to electronic invoicing than sale orders
Email addresses are now formatted more consistently across Helpdesk, Appraisals, and Sign workflows. This reduces the chance of malformed recipient details in outgoing messages and helps business communications look cleaner and more reliable.
Original PR description
odoo/odoo#173467
The WhatsApp integration now loads part of its discussion app setup from the correct place. This helps keep the app structure cleaner and reduces the risk of loading issues for users interacting through WhatsApp-related conversations.
Original PR description
Part of task-3972988 community: https://github.com/odoo/odoo/pull/171576
The US NACHA payment module was updated to meet current automated code quality checks. This reduces friction for future fixes and maintenance without changing business functionality.
Original PR description
"".format() is no longer allowed. This is enforced by the check_style_ruff step in runbot. Every bugfix touching these lines requires an exception from the runbot team. This converts every string formatting operation in l10n_us_payment_nacha to an f-string. Every bugfix will now conflict, but at least we won't have to bother the runbot team. This was done automatically with flynt [1], which as far as I can tell did a perfect job. Fixing that makes other errors pop up (e.g. FURB113 to replace multiple append() calls with a single extend()). This commit fixes those as well. The remaining ones in the module are easy and were done as well (removing # coding and super() arguments). [1] https://pypi.org/project/flynt/