Daily updates from Odoo
Tuesday, October 23, 2018
5 changes · master
Enhancements to existing features
The stock transfer form layout was adjusted so company and website fields no longer appear awkwardly isolated on the Extra tab for incoming deliveries. This improves readability and makes the delivery and stock screens feel more consistent for users reviewing transfer details.
Original PR description
This commit will avoid having the company_id and/or website_id field(s) alone on the top right of the 'extra' tab if the `picking_type_code` is in `incoming` opw-1894793
Changing a folder in document-related settings now clears the selected tags, because tags only apply to their specific folder. This helps prevent users from saving mismatched tag settings and makes configuration more predictable.
Original PR description
This commit improves settings usability by clearing the tag list on folder change as tags are folder specific. (task: 1893573)
Resolved issues and error corrections
This fixes an issue that could cause an error when users opened the Survey app menu. The survey screen now loads normally, improving reliability for users accessing surveys.
Original PR description
survey.user_input type was renamed to input_type in 35a5db9. This domain was forgotten and made the click_everywhere test fail. Description of the issue/feature this PR addresses: Fix survey Current behavior before PR: click on survey menu an appreciate the traceback Desired behavior after PR is merged: click on survey menu and enjoy a nice app -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Grouped list headers now have better visual contrast, making them easier to read. Styling responsibilities were also aligned with the community edition, helping keep the interface consistent across Odoo versions.
Original PR description
This rev. is the counterpart of odoo/odoo/pull/27603. Padding rules have been moved to community. We also increase the contrast between text-color and background-color of group headers. Task 1878254 closes odoo/enterprise#2808
Code cleanup and technical improvements
This update reorganizes and tidies internal code for Odoo's web interface, mainly around screen views and action handling. It does not add new business features, but it should make the web client easier to maintain and safer to evolve in future updates.
Original PR description
(mainly views and ActionManager) - add missing docstrings - fix typos - correctly order function and imports - put functions in correct sections - stop using 'event' as argument of handlers - don't call handlers directly - remove trailing spaces/tabs - follow js guidelines in general 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