Tuesday, March 10, 2020
5 changes · master
Resolved issues and error corrections
This fixes an issue where clicking Edit on a website page with no editable content could show an error. Users now avoid an unnecessary interruption when managing website pages that cannot be edited.
Original PR description
Avoid traceback when click on edit and nothing is editable on the page. task-2199214 Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update prevents forms from crashing when related record lists contain another related record list that is filled automatically. Users can now open those records reliably and see the expected nested details, improving stability for complex data entry screens.
Original PR description
Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update fixes a spelling mistake in a field label within the employee organization chart. It improves clarity and presentation for users viewing HR organizational information, with no expected change to business processes.
Original PR description
Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Product barcodes now remain visible on product templates even when the related product variant is archived. The update also prevents templates with multiple variants from being incorrectly archived when a variant is reactivated, helping users keep product records accurate and accessible.
Original PR description
**Barcode field disappears in template(product.template) when you archive the same record from product('product.product')'**
Here we are making sure that even when a product is archived, its barcode is still visible in template.
We had to change barcode from a related field to a computed field.
Task- https://www.odoo.com/web#id=1978559&action=333&active_id=966&model=project.task&view_type=form&menu_id=4720
Pad- https://pad.odoo.com/p/r.1118e013e6c395157a91b17029dcea74
--
I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-prTest locations used by the inventory barcode workflow were renamed from “Shelf” to “Section” to avoid duplicate names. This prevents automated tests from selecting the wrong location, making test results more consistent without changing customer-facing behavior.
Original PR description
As we usually use WH/Stock as location in test, we also have it's child locations (Shelf 1, Shelf 2, ...). But, in some test, we created also locations we name also Shelf 1 and Shelf 2. Because of that, it can happen in test tour that the tour doesn't select the same location (for instance, want to select Shelf 1, but hey, we have two Shelf 1 !). The result could be we have during the tour an another page with the same name than an existing page. So, to avoid this undeterminist behavior, this commit renames all locations created in tests with a "Shelf n" name into "Section n".