Add group by partner in pickings
This commit is contained in:
committed by
Alexis de Lattre
parent
1c2865f34c
commit
c15be9ebb9
@@ -34,6 +34,7 @@ Stock Usability
|
|||||||
The usability enhancements inclure:
|
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).
|
* 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 !)
|
* 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>.
|
This module has been written by Alexis de Lattre from Akretion <alexis.delattre@akretion.com>.
|
||||||
""",
|
""",
|
||||||
|
|||||||
@@ -32,6 +32,18 @@
|
|||||||
</field>
|
</field>
|
||||||
</record>
|
</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>
|
</data>
|
||||||
|
|||||||
Reference in New Issue
Block a user