Daily updates from Odoo
Monday, February 21, 2022
2 changes · master
Resolved issues and error corrections
This fixes an issue where some country-specific reporting, e-invoicing, and check printing add-ons did not install automatically when they should have. Businesses using localized accounting setups should see required compliance features enabled more reliably without manual intervention.
Original PR description
Some modules are set to be auto installed, but with dependencies preventing the desired flow. For instance, `account_lu_reports` depends on `account_saft`, but as we don't want that module to be auto installed, `account_lu_reports` wasn't either. To fix that, we declare the module as `auto_install`ed based on the main `l10n_**` modules and the base `account_*` modules only. It is done even when not stricly necessary to give a guideline, as it was an issue for several modules not correctly auto-installed.
Documentation links across several Odoo Enterprise apps have been updated to point to the master documentation instead of older targets. This helps users and administrators reach the most current guidance when configuring features or seeking help.
Original PR description
See also: - https://github.com/odoo/odoo/pull/84990 Forward-Port-Of: odoo/enterprise#24556 Forward-Port-Of: odoo/enterprise#24271