Daily updates from Odoo
Thursday, August 16, 2018
5 changes · master
New functionality added to Odoo
Inventory delivery slips can now include lot and serial numbers, with expiration dates shown when that information is relevant and enabled. This gives customers and warehouse teams clearer traceability on delivered goods without risking accidental loss of expiration data settings.
Original PR description
project : RD for Dummies task : [Inventory] Add SN/LN on Delivery Order
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 branchThis update separates custom payment methods from traditional bank transfer payments, making payment options clearer to configure and manage. It also updates payment provider setup data and branding assets for several providers, helping businesses present the right payment choices to customers.
Original PR description
Task: https://www.odoo.com/web#id=28480&view_type=form&model=project.task&action=333&active_id=248&menu_id=4720
Sales 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
This change introduces a fuller report editor that lets users create, delete, and edit both the structure and content of reports. It improves report customization from simple text edits to a more complete, easier-to-use editing experience.
Original PR description
Description of the issue/feature this PR addresses: https://www.odoo.com/web#id=1819333&action=333&active_id=133&model=project.task&view_type=form&menu_id=4720 Current behavior before PR: There was a basic report editor, allowing to edit in-place the static parts of a report Desired behavior after PR is merged: There is a report editor that allows, creation, deletion and edition of a report structure and content in a user friendly way