Tuesday, February 10, 2026
6 changes · 17.0
Resolved issues and error corrections
This update fixes an issue where the order web preview incorrectly showed the tax description instead of the tax name. The change ensures that the correct tax name is displayed in the preview, improving accuracy and clarity for sales teams. This aligns with upcoming Odoo versions.
Original PR description
Currently, the `Tax name` configured on taxes is not applied in the web preview of orders. **Steps to reproduce:** - Install the `sale_management` module. - Go to Invoicing > Configuration >…
Currently, the `Tax name` configured on taxes is not applied in the web preview of orders. **Steps to reproduce:** - Install the `sale_management` module. - Go to Invoicing > Configuration > Accounting > Taxes. - Create a new tax, `Tax Type: Sale`and set `Description`. - Create a new quotation and apply this tax to a product. - Click Preview > observe the `Taxes` value. **Observation:** - Web preview incorrectly displays `description` instead of `tax name`. **Root Cause:** At [1], the sale portal web preview template uses `description or name`, which causes an incorrect tax description to be displayed in the preview. **Fix:** This commit ensures that `Tax Name` is used when rendering taxes in the portal preview for Reantal, Sales, and Subscriptions apps. This aligns with the behavior in the next versions. Related Enterprise PR: https://github.com/odoo/enterprise/pull/106830 [1]: https://github.com/odoo/odoo/blob/849ec71acbaea0061fd4b13888a486e4aebb6463/addons/sale/views/sale_portal_templates.xml#L598 opw-5411496
This update resolves an issue where account numbers weren't being properly logged during the processing of UBL (Universal Business Language) invoices. By logging the account numbers directly, the system now accurately tracks financial data related to these invoices, improving reporting and reconciliation. This ensures data integrity for financial transactions.
Original PR description
--- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#247693
This update fixes an issue where newly hired employees were incorrectly receiving their private email address as their work email. The change ensures that the employee's work email field is properly cleared during the contract signing process, preventing this duplication. This improves data accuracy and consistency for employee records.
Original PR description
**Steps to Reproduce:** 1. Send an offer to an applicant. 2. The applicant submits their details via the salary configurator and enters their private email in the Email field. 3. Once the offer and contract are signed, an employee record is created in Odoo. 4. In the created employee record, the `work_email` field is populated with the email entered in the salary configurator. This same value is also present in `private_email`, which is correct. **Reason:** - The email entered in the salary configurator is stored on the partner and represents the applicant's private email. - The employee's `work_email` field is linked to the partner's email via compute and inverse methods, causing it to inherit the private email value when the employee record is created. **Solution:** - Explicitly clear the employee's work_email field when the applicant sign. task: 5502797
This update fixes an issue where draft journal entries in the payroll accounting module were incorrectly using the end of the month instead of the payslip pay period date. This ensures accurate accounting records and proper financial reporting for employee payroll.
Original PR description
Steps to Reproduce: - install payroll accounting module - create or update existing employee contract - change schedule pay to semi-monthly - create a payslip and validate it. - create draft entry and open the journal entry Issue: - The accounting date of the draft entry is the last date of the month. - It should be the end date of payslip pay period. Reason: - While creating draft entry it takes the last date of the month instead of the end date of the payslip Solution: - assign end date of payslip pay period instead of last date of the month task-5419465
This update addresses an issue where rounding units were unexpectedly appearing in financial reports and views. By adding a new name to the rounding units, the changes prevent their display, resulting in cleaner and more accurate reporting. This enhances the overall clarity and professionalism of our financial data presentation.
Original PR description
adhoc-ticket-side: 82382
This update fixes a display issue in the order web preview where tax names weren't correctly shown. Previously, the preview showed the tax description instead. The fix ensures that the configured tax name is displayed, providing accurate tax information in the portal preview for sales orders.
Original PR description
Currently, the `Tax name` configured on taxes is not applied in the web preview of orders. **Steps to reproduce:** - Install the `industry_fsm_sale` module. - Go to Invoicing > Configuration >…
Currently, the `Tax name` configured on taxes is not applied in the web preview of orders. **Steps to reproduce:** - Install the `industry_fsm_sale` module. - Go to Invoicing > Configuration > Accounting > Taxes. - Create a new tax, `Tax Type: Sale`and set `Description`. - Open Field Service, create a new task, and set a Customer and Sales Order Item (using a sale order with the newly created tax). - Click the gear icon > Share > Copy to copy the portal link. - Open the link in a new window and observe the Taxes value. **Observation:** - Web portal preview incorrectly displays `description` instead of `tax name`. **Root Cause:** At [1], the project portal web preview template uses `description or name`, which causes an incorrect tax description to be displayed in the preview. **Fix:** This commit ensures that `Tax Name` is used when rendering taxes in the portal preview. Related community PR: https://github.com/odoo/odoo/pull/241850 [1]: https://github.com/odoo/enterprise/blob/6d5e02b61f90ec490fdad72d87ea73d1c6adcfac/industry_fsm_sale/views/project_portal_templates.xml#L77-L79 opw-5411496