Daily updates from Odoo
Wednesday, December 7, 2016
2 changes · master
Enhancements to existing features
The Support option in the user menu now opens the Odoo Help website instead of starting an email to help@odoo.com. This gives users direct access to online support resources in a new browser tab.
Original PR description
Description of the issue/feature this PR addresses: Task: https://www.odoo.com/web?#id=29404&view_type=form&model=project.task&action=333&active_id=131&menu_id=4720 Pad: https://pad.odoo.com/p/r.bb28be97f6a51edaedc0a8835dea3127 Current behavior before PR: If click on 'Support' from user dropdown menu (top-right-corner), it redirect to 'mailto:help@odoo.com' Desired behavior after PR is merged: If click on 'Support' from user dropdown menu (top right corner), it will redirect to ' https://www.odoo.com/help' with a new tab -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Code cleanup and technical improvements
Odoo will now generate clearer default labels for relationship fields by removing technical suffixes like “id” and “ids.” This makes automatically created screens and labels easier for users to read, with plural labels handled more naturally where needed.
Original PR description
Description of the issue/feature this PR addresses: Remove `_id` and `_ids` to field label string based on technical name. Current behaviour before PR: ``` python partner_id = fields.Many2one() # Default string: "Partner Id" partner_ids = fields.One2many() # Default string: "Partner Ids" ``` Desired behaviour after PR is merged: ``` python partner_id = fields.Many2one() # Default string: "Partner" partner_ids = fields.One2many() # Default string: "Partners" ```