Friday, January 6, 2017
3 changes
Enhancements to existing features
Hovering over social sharing icons in the settings dashboard now shows a hand cursor, making it clearer that the icons are clickable. This small usability improvement helps users better understand available actions.
Original PR description
Task : https://www.odoo.com/web#id=29551&view_type=form&model=project.task&action=327&menu_id=4720 Pad : https://pad.odoo.com/p/r.57bde0a4330cf18b39f574d3df1800ab 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
Resolved issues and error corrections
This fixes a missing setup link in the Google Drive settings box for Google Spreadsheet integration. Users can once again access the link needed to generate the required Google Drive code from the settings page.
Original PR description
Description of the issue/feature this PR addresses: Task: https://www.odoo.com/web?#id=29501&view_type=form&model=project.task&action=333&active_id=131&menu_id=4720 Current behavior before PR:Generate code link is missing in google drive box Desired behavior after PR is merged: link is recovered in box -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This fix adjusts how US check printing reports handle page styling so checks print at the intended size and position. It replaces an earlier workaround with a cleaner approach, helping reduce alignment issues caused by printer margins and report layout defaults.
Original PR description
In 9.0 with 5877de5 an issue with style set on the body tag was solved not in the best way. With odoo/odoo@a01b88a _(to be pushed if this PR was ok)_, we now can choose the body class attribute, so this commit is a better solution for the issue. opw-669636 **PR NOTE:** on the us check reports we have: - -15px margin on the body.container tag (which we can not override cleanly) - top/left set on the page by configuration in Odoo to account for unsettable printer margins - content should be fixed to 8.5in (to be able to set elements at good position) 5877de5 was an ugly fix to set the width to 8.5in and cancel the -15px margins on body tag instead of what was done, but this commit should IMO do it more nicely.