Tuesday, April 16, 2024
3 changes · master
Features or functions removed from Odoo
This change removes an automatic field update in timesheet analytic lines. It should make timesheet records behave more predictably and reduce hidden side effects when entries are edited.
Original PR description
Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This change removes duplicate access rule definitions in the Accounting module that controlled the same records in the same way. It simplifies configuration and reduces maintenance risk without changing what users can access.
Original PR description
There was 2 identical ir.rule on account.move: account.account_move_see_all https://github.com/odoo/odoo/blob/master/addons/account/security/account_security.xml#L223 and account.account_move_rule_group_invoice https://github.com/odoo/odoo/blob/master/addons/account/security/account_security.xml#L276 There was also 2 identical ir.rule on account.move.line: account.account_move_line_see_all https://github.com/odoo/odoo/blob/master/addons/account/security/account_security.xml#L230 and account.account_move_line_rule_group_invoice https://github.com/odoo/odoo/blob/master/addons/account/security/account_security.xml#L283 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The subscription-specific warning for archived products was removed because this check is now handled in the main Sales app. This avoids duplicate warnings and keeps the subscription workflow aligned with the broader sales process.
Original PR description
The feature has been moved to the `sale` module. task-3757933