[IMP] mrp,sale,purchase,account: set context on group by in search view

bzr revid: sbh@tinyerp.com-20100205080104-0kqfdivqaa1xt44b
This commit is contained in:
sbh (Open ERP) 2010-02-05 13:31:04 +05:30
parent 4be5071c70
commit 9d3ec8e1c2
4 changed files with 7 additions and 6 deletions

View File

@ -335,8 +335,8 @@
<field name="partner_id" select='1'/>
<field name="amount_total" string="Price" select='1'/>
<field name="origin" select='1'/>
</group>
<group expand="1" string="Group By..." colspan="4" col="10">
</group>
<group expand="context.get('report',False)" string="Group By..." colspan="4" col="10">
<filter string="By Partner" icon="terp-account" domain="[]" context="{'group_by':'partner_id'}"/>
<filter string="By State" icon="terp-account" domain="[]" context="{'group_by':'state'}"/>
<filter string="By Date Invoice" icon="terp-account" domain="[]" context="{'group_by':'date_invoice'}"/>

View File

@ -540,7 +540,7 @@
<field name="routing_id" select='1'/>
<field name="origin" select='1'/>
</group>
<group expand="1" string="Group By..." colspan="4" col="8">
<group expand="context.get('report',False)" string="Group By..." colspan="4" col="8">
<filter string="By Product" icon="terp-mrp" domain="[]" context="{'group_by':'product_id'}"/>
<filter string="By State" icon="terp-mrp" domain="[]" context="{'group_by':'state'}"/>
<filter string="Scheduled Date" icon="terp-mrp" domain="[]" context="{'group_by':'date_planned'}"/>
@ -758,7 +758,7 @@
<field name="date_planned" select='1'/>
<field name="state" select='1'/>
</group>
<group expand="1" string="Group By..." colspan="4" col="8">
<group expand="context.get('report',False)" string="Group By..." colspan="4" col="8">
<filter string="By Product" icon="terp-mrp" domain="[]" context="{'group_by':'product_id'}"/>
<filter string="By State" icon="terp-mrp" domain="[]" context="{'group_by':'state'}"/>
<filter string="Scheduled Date" icon="terp-mrp" domain="[]" context="{'group_by':'date_planned'}"/>

View File

@ -161,7 +161,7 @@
<filter icon="terp-purchase" domain="[('create_uid','child_of',[uid])]" help="My Departments Purchase Orders"/>
</field>
</group>
<group expand="1" string="Group By..." colspan="4" col="10">
<group expand="context.get('report',False)" string="Group By..." colspan="4" col="10">
<filter string="By Supplier" icon="terp-purchase" domain="[]" context="{'group_by':'partner_id'}"/>
<filter string="By State" icon="terp-purchase" domain="[]" context="{'group_by':'state'}"/>
<filter string="By Order Date" icon="terp-purchase" domain="[]" context="{'group_by':'date_order'}"/>

View File

@ -243,10 +243,11 @@
</field>
<field name="date_order" select="1"/>
</group>
<group expand="1" string="Group By..." colspan="4" col="8">
<group expand="context.get('report',False)" string="Group By..." colspan="4" col="8">
<filter string="By Parnter" icon="terp-sale" domain="[]" context="{'group_by':'partner_id'}"/>
<filter string="By State" icon="terp-sale" domain="[]" context="{'group_by':'state'}"/>
<filter string="By Order Date" icon="terp-sale" domain="[]" context="{'group_by':'date_order'}"/>
</group>
</search>
</field>