Daily updates from Odoo
Thursday, February 13, 2025
1 change · master
Resolved issues and error corrections
Users with Invoicing and Banks access can now open customer statements, partner ledger information, and follow-up tools without needing full Accounting access. This aligns reporting permissions with the newer invoicing role and makes key customer payment workflows available to the intended users.
Original PR description
With the introduction of Invoicing Enterprise (access to bank recon etc) a new user group was created "Invoicing & Banks" (`group_account_basic`)
This group should also be able to access the customer statement / partner ledger (from the partner smart button), as well as the followup wizard.
Implications: The module dependencies change because account_reports are now available with just Invoicing.
Old dependencies
----------------
- `account_asset` ... (and other accounting features)
- `account_reports` (auto installed)
- `accountant` **[Accounting]**
- `account_accountant` (auto installed)
- `account` **[Invoicing]**
New
---
- `account_asset` ... (and other accounting features)
- `accountant` **[Accounting]**
- `account_reports` (auto install)
- `account_accountant` (auto install)
- `account` **[Invoicing]**
Task-4465208