Thursday, September 22, 2022
5 changes · master
Resolved issues and error corrections
This fixes a display issue where the “add new column” area in Kanban boards could overlap with other text when horizontal scrolling was present. Users adding columns in project task boards and similar Kanban views now see clearer, properly spaced text.
Original PR description
Before this commit: In project task texts are not proper view when added a new column . After this commit: In project task texts are proper view when added a new column . Task_id: 2871552
The timesheet settings page now hides a field that should not be shown and removes duplicated wording in the description. This makes the settings screen clearer and less confusing for users configuring timesheets.
Original PR description
1 : Field was visible which needed to be invisible
Now the field is not visible
2 : Earlier the line in the description was repeating
Now line is not repeated in description
--
I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-prThe project profitability panel now shows margin as a positive value when appropriate. This avoids misleading negative profitability figures and helps users read project financial status more accurately.
Original PR description
Before this commit, In Project > Set Status >Right Panel in Profitability the Margin calculation was shown negative After this commit, Margin calculation is shown Positive task-2979890 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 fix prevents irrelevant fields from appearing in specific configuration screens. Planning materials no longer show working time when flexible hours are enabled, and field service project creation no longer shows the sale order item field when it should be hidden.
Original PR description
1) Before this commit, In Planning > Configuration > Materials list view while enabling flexible hours field Working time field was displayed After this commit, In Planning > Configuration > Materials list view while enabling flexible hours field Working time field was NOT displayed 2) Before this commit, while creating fsm project we were able to see sale order item After this commit, while creating fsm project sale order item is hide task-2979890
Shared read-only field service projects can now open task links without triggering an error related to sales order access. The change checks whether the viewer is allowed to read the related sales order before searching it, preventing unnecessary failures for shared project users.
Original PR description
Before this commit, When we shared the project in read-only access that time access error was raised when we try to open the task by shared link due to invalid access on sale.order. So in this commit, check the read access for sale.order, and if the public user has the right to read the sale order then allow to search on order. task-2889455