Daily updates from Odoo
Friday, April 19, 2019
5 changes · master
New functionality added to Odoo
This adds a setting to choose a default warehouse for each website. Online shoppers will see product availability based on that website’s warehouse instead of company-wide stock, making inventory information more accurate for each storefront.
Original PR description
Description of the issue/feature this PR addresses: Task ID - https://www.odoo.com/web#id=1913031&action=327&model=project.task&view_type=form&menu_id=4720 Pad ID - https://pad.odoo.com/p/r.bd614c793c7ec8a9861a997e07281c8c 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
Enhancements to existing features
This update makes the project edit form easier to scan by reorganizing fields into clearer columns and hiding a rarely used email field. It also ensures pivot views correctly apply saved row grouping settings, improving consistency in project reporting.
Original PR description
Task : https://www.odoo.com/web?#id=54027&view_type=form&model=project.task&action=333&active_id=131&menu_id=4720 Pad : https://pad.odoo.com/p/r.394011d9fd84ee9ca8fb5f7418bcf9c8 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Companies using multiple legal entities can now store separate TaxCloud credentials for each company. This helps each company submit tax reports with the correct account information, reducing manual work and configuration conflicts.
Original PR description
…company, Purpose: Allow users who have more than one company to fill in their tax reports in taxcloud. Solution: Moved the fields taxcloud_api_[id/key] to res.company and made them 'related' fields in res.config.settings model to make it company wise configurable. task:https://www.odoo.com/web?#id=58951&view_type=form&model=project.task&action=333&active_id=131&menu_id=4720 pad:https://pad.odoo.com/p/r.889ae06bc4e2146cae2237476cb80a50
The helpdesk ticket form can now be edited more reliably in the website form builder. This makes it simpler for teams to customize ticket intake forms without needing technical changes, while also applying better default form settings.
Original PR description
* Task: https://www.odoo.com/web#id=32212&action=327&model=project.task&view_type=form&menu_id=4720 * Pad: https://pad.odoo.com/p/r.7ab52140b419fdd9222515ea64a9063e
Resolved issues and error corrections
This fix corrects how products are ordered on the website by consistently using the dedicated website ordering field. It prevents products from appearing in the wrong position and makes website product sorting more reliable for sales and membership pages.
Original PR description
There was multiple issues with `website_sequence` field, mostly coming from commits during the last few years that tried to change the `website_sequence` order to be the same as `sequence` but changing only half of the code. Other commits tried to restore that again by changing only some parts. This commit does: 1. Originally, the `website_sequence` was supposed to be the opposite of `sequence` field, the greater the first. It allows to promote infinitly without having to recompute all the sequence tree. This commit restore that. 2. Since the order was reverse and one of the demo data had sequence set to '4' we could actually only sequence down 3 product before hitting 0. 3. Membership was not using the `website_sequence` in the supposed order 4. Add `website_sequence` field in form/list view in debug. task-1960777