Friday, November 10, 2023
8 changes · 17.0
Enhancements to existing features
The web module now shows a more accurate message when a related map file is missing or outdated. This helps support teams identify that the file likely needs to be regenerated rather than chasing an unrelated configuration issue.
Original PR description
If a .map is missing (outdated) the error message will report
'min' expected in extension in non debug mode
when the problem is actually that map are not generate through this route.
If the attachment corresponding to a .map is not found, it was most likely garbage collected.
Change the message to:
.map should have been generated through debug assets, (version 5eff983 most likely outdated)Resolved issues and error corrections
When website or web assets fail to load because of an underlying error, Odoo now logs the actual error details instead of only reporting that the asset was not found. This helps teams diagnose and resolve broken pages or missing resources faster, reducing downtime during development and maintenance.
Original PR description
Since [1], when an error exists in an asset, the assets raise a not found exception. The issue, is that, there is no feedback for the developer to find the error. Now, a new console log with the error details is shown. [1] : bf3b6b0b8b2277757b242b28c65c05433632f467
Miscellaneous changes
Administrators sometimes machine-translate Odoo into their own language. In this respect, we should avoid ambiguous wording* that could be poorly machine-translated. \*: in this case, the onomatopoeia "Poof!" was misinterpreted as a British slur. opw-3590503
Original PR description
Administrators sometimes machine-translate Odoo into their own language. In this respect, we should avoid ambiguous wording* that could be poorly machine-translated. \*: in this case, the onomatopoeia "Poof!" was misinterpreted as a British slur. opw-3590503
Fixed a visual issue in the helpdesk module where an empty space appeared on new tickets that don't have Service Level Agreements (SLAs) applied. The fix hides the SLA status field when no SLAs are configured, providing a cleaner user interface.
Original PR description
In this PR we have fix the issue that when we create a new ticket on which sla is not applied then it shows empty space. Fix- by adding attrs we made sla_status_ids field invisible. task-3433667 Forward-Port-Of: odoo/enterprise#50415 Forward-Port-Of: odoo/enterprise#44529
Prevent oss post init of the module Prevent oss instantiation at company creation Put oss tax on the root company Task : 3573252 Forward-Port-Of: odoo/odoo#140324
Original PR description
Prevent oss post init of the module Prevent oss instantiation at company creation Put oss tax on the root company Task : 3573252 Forward-Port-Of: odoo/odoo#140324
Description of the issue/feature this PR addresses: * Sum rank fields if the partner is merged It will help to increase the rank of both records and have a better ranking Current behavior before PR: When partners are merged, the records of sales and invoices are merged also, but the rank fields are not updated, so it has incongruent information. Desired behavior after PR is merged: When partners are merged, the records of sales and invoices are merged, ranks fields are updated
Original PR description
Description of the issue/feature this PR addresses: * Sum rank fields if the partner is merged It will help to increase the rank of both records and have a better ranking Current behavior before PR: When partners are merged, the records of sales and invoices are merged also, but the rank fields are not updated, so it has incongruent information. Desired behavior after PR is merged: When partners are merged, the records of sales and invoices are merged, ranks fields are updated correctly. ----- Update branch of this https://github.com/odoo/odoo/pull/85562 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#141366
Steps: - Install Project & Website - Go to Website Module - Click on Tasks - Now on hover multiple assignees, the error appears Issue: - On the hover of the mouse, an error appears when we are viewing multiple assignees . Cause: - There is list in which we mapped assignees & reading from the 1st index not from the 0th index. Fix: - List execute from 0th index not from 1st index in assignees list Task-3495253 Forward-Port-Of: odoo/odoo#141318 Forward-Port-Of: odoo/odoo#135130
Original PR description
Steps: - Install Project & Website - Go to Website Module - Click on Tasks - Now on hover multiple assignees, the error appears Issue: - On the hover of the mouse, an error appears when we are viewing multiple assignees . Cause: - There is list in which we mapped assignees & reading from the 1st index not from the 0th index. Fix: - List execute from 0th index not from 1st index in assignees list Task-3495253 Forward-Port-Of: odoo/odoo#141318 Forward-Port-Of: odoo/odoo#135130
`not` is a Python keyword and shouldn't be translated
Original PR description
`not` is a Python keyword and shouldn't be translated