Daily updates from Odoo
Thursday, August 16, 2018
2 changes
New functionality added to Odoo
This adds a new option that lets developers place newly added dropdown choices before a specific existing choice. It helps customizations present options in a more logical order without replacing the full original list.
Original PR description
add option 'selection_add_before' to selection fields to define selection_add position.
Description:
origin selection looks like [('b','B'),('c','C')]
It will used like:
fields.Selection(selection_add=[('a', 'A')], selection_add_before='c')
('a', 'A') will be added before ('c','C'), the final selection is:
[('b','B'), ('a', 'A'), ('c','C')]
Same as #9936 , this one is for master branchSales users can now access product categories directly from the product configuration menu. This makes it easier to organize and manage products without needing another app menu.
Original PR description
Description of the issue/feature this PR addresses: If you install `sale` module is not possible use the important menu to `product.category` Desired behavior after PR is merged: - Adds the menuitem to sale module: -  Note: I just copied from [purchase/views/purchase_views.xml](https://github.com/odoo/odoo/blob/20f2de82965ed782f14f4154f750853ae5c297f8/addons/purchase/views/purchase_views.xml#L29-L32) -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr