Monday, January 8, 2024
3 changes · master
Resolved issues and error corrections
This fixes an issue where OnSIP VoIP settings could fail to load after a related platform change. Users should see the VoIP integration continue working normally without settings errors.
Original PR description
Follow the change of https://github.com/odoo/odoo/pull/141904, user.settings service is changed from service to record and is now in mail.store service. Missing this change in voip_onsip.
Archiving a subscription pricelist now also removes it from related product records, keeping product pricing information consistent. If the pricelist is restored, it is added back so users see the correct active pricing options.
Original PR description
**Version:** - master **Steps to reproduce:** - Create a new price list - Add the product to the price list - Archive the price list - Go to that product - The archived price list is available **Issue:** The product will be removed from the pricelist when archived, but it won't be removed from the product when archived. **Solution:** By adding the `action_archive` method in the `product.pricelist` to fix the issue. Once the pricelist is achieved, it will be removed from the product too. task-3573491 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This change removes an unnecessary space in the accounting reports code. It is a small cleanup that helps keep the codebase tidy without changing how users interact with the system.
Original PR description
An useless space was inserted between option and the strict equality. The aim of this commit is removing it forever. no task id