Add group by partner in pickings

This commit is contained in:
Alexis de Lattre
2015-02-17 09:24:02 +01:00
committed by Alexis de Lattre
parent 1c2865f34c
commit c15be9ebb9
2 changed files with 13 additions and 0 deletions

View File

@@ -34,6 +34,7 @@ Stock Usability
The usability enhancements inclure:
* display the source location on the tree view of the move lines of the pickings (by default, only the destination location is displayed).
* always display the field *Backorder* on the form view of picking (by default, this field is only displayed when it has a value, so the user doesn't know when the field has no value because he doesn't see the field !)
* add a group by Partner in the picking search view (particularly usefull for receptions)
This module has been written by Alexis de Lattre from Akretion <alexis.delattre@akretion.com>.
""",

View File

@@ -32,6 +32,18 @@
</field>
</record>
<record id="view_picking_internal_search" model="ir.ui.view">
<field name="name">stock_usability.view_picking_search</field>
<field name="model">stock.picking</field>
<field name="inherit_id" ref="stock.view_picking_internal_search" />
<field name="arch" type="xml">
<group expand="0" position="inside">
<filter string="Partner" context="{'group_by': 'partner_id'}"/>
</group>
<filter string="Origin" position="replace"/>
</field>
</record>
</data>