Daily updates from Odoo
Wednesday, December 7, 2016
6 changes · master
New functionality added to Odoo
This update adds an in-browser editor for website style files, making it easier to adjust site appearance without leaving Odoo. It also improves validation, search, recovery for broken assets, and safeguards around restricted files to reduce editing mistakes.
Original PR description
[ADD] less/css editor [ADD] added mode files [IMP] added worker for css errors and warnings, excluded lib's css files [IMP] added a way for edit crashed assets [IMP] loaded back previously edited asset [IMP] improved code according new JavaScript Format (Thanks to GED :P) [IMP] added search extension for Ace Editor [FIX] fixed issue of empty list and css [IMP] added restriction on some assets [IMP] improved reset less feature
This update adds a dedicated eBay-related settings area for website sales. It helps businesses manage eBay integration options more clearly from the website settings, improving setup and administration.
Original PR description
New website settings by CBU.
Enhancements to existing features
Website editors get a more reliable page search experience when adding or editing menu entries. The update also improves save behavior and shows clearer messages when required information is missing or invalid.
Original PR description
Task: https://www.odoo.com/web?#id=27350&view_type=form&model=project.task&action=327&menu_id=4720 Pad: https://pad.odoo.com/p/r.164ececd9aef79bc377b847bacdb2430 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 introduces a redesigned settings experience for the Website app, making configuration clearer and easier to manage. It also includes supporting styling improvements and related accounting configuration adjustments that help align settings pages across the system.
Original PR description
New website settings by cbu.
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" ```