Monday, July 31, 2023
2 changes · master
Features or functions removed from Odoo
This change removes an old accounting function that was no longer used anywhere in the system. It helps keep the accounting codebase cleaner and easier to maintain, with no expected impact on day-to-day users.
Original PR description
before this commit, the create_cash_statement function defined in the journal model is not called from any where. left over in: https://github.com/odoo/odoo/commit/9299f81f19a87d6e6eb9ee19a79d96d3fb1050b2 after this commit, the function will be removed from code. Related EE: https://github.com/odoo/enterprise/pull/44453 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
An unused internal function related to cash statements was removed from the accounting dashboard code. This cleanup reduces maintenance overhead without changing how users work with the system.
Original PR description
before this commit, the create_cash_statement function defined in the journal model is not called from any where. left over in: 9299f81 after this commit, the function will be removed from code.