Monday, August 26, 2024
3 changes
2 changes
Enhancements to existing features
Accounting access groups now have clearer names and helper text, making it easier for users to understand permission choices. The basic accounting group is also hidden when the accountant app is uninstalled, reducing confusion in settings.
Original PR description
Improve the name and tooltips of accounting security groups to improve the UX for users. At the same time, we hide the `basic` group on un-installation of account_accountant. Task-4128182 community: https://github.com/odoo/odoo/pull/177368
Mexican e-commerce customers can now select the required payment way during checkout. This helps ensure electronic invoices contain mandatory information, reducing the need to cancel and reissue invoices later.
Original PR description
This commit adds the field `l10n_mx_edi_payment_method_id` to the website checkout, so that the customer can choose the correct option to be saved into the sale order and to fill the attribute in the XML. Purpose: In Mexican electronic invoicing, some fields are mandatory for signing an invoice. Now, on e-commerce, one field is missing to avoid requests to cancel invoices due to lack of information. This missing field is "Payment way" (l10n_mx_edi_payment_method_id). This commit also restructures the placement of `t-if`/`div`s so that they appear in the right places and not generate empty divs. task-id: 4064069
1 change
Enhancements to existing features
This update improves the German tax report (DateV) export functionality by fixing formatting issues with unique identifiers in CSV files, separating CSV and attachment exports into distinct files for better organization, and ensuring only the primary attachment per transaction is exported as required by the format. These changes ensure the exported files comply with DateV format requirements and improve the user experience with clearer button labels.
Original PR description
While the format for the guid is the right in the xml, for the CSV, we should add double quotes, as asked by the format. The 2 zip should really be separated, with one for the csv and the other for the attachments Renamed the 2 buttons to indicate more clearly what they are about. The csv only expects a single attachment per move. We should then only export the message_main_attachment_id task-4131986 Forward-Port-Of: odoo/enterprise#68794