Monday, January 8, 2024
5 changes
3 changes
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
2 changes
Resolved issues and error corrections
This update corrects the visual alignment between question labels and input fields in the appointment booking form. When customers book appointments, the form questions now display properly aligned, improving the overall user experience and making the form easier to read and complete.
Original PR description
Fix the alignment between the questions labels and the questions inputs in the attendee form when booking an appointment. Task-3648160
This fix removes an incorrect dependency that the payroll module had on the sign module. The payroll system does not actually require the sign module to function, so this unnecessary link has been corrected. This cleanup helps streamline the system and prevents potential conflicts or confusion about module relationships.
Original PR description
hr_payroll does not depend on sign. This change was introduced in https://github.com/odoo/enterprise/commit/98ff57513dce2673cd6a64bbeb5cfb84b7921dff task-3660141