[IMP] filter on lines that are invoiced: timesheet

bzr revid: fp@tinyerp.com-20111228215807-xay5rwm7f2rpqhep
This commit is contained in:
Fabien Pinckaers 2011-12-28 22:58:07 +01:00
commit f0f42ae721
1 changed files with 2 additions and 1 deletions

View File

@ -89,7 +89,8 @@
<field name="inherit_id" ref="account.view_account_analytic_line_filter"/>
<field name="arch" type="xml">
<field name="date" position="before">
<filter name="to_invoice" string="To Invoice" context="{'to_invoice': 1}" domain="[('invoice_id','=',False),('to_invoice','&lt;&gt;',False)]" icon="terp-dolar"/>
<filter name="to_invoice" string="To Invoice" context="{'to_invoice': 1}" domain="[('invoice_id','=',False), ('to_invoice','&lt;&gt;',False)]" icon="terp-dolar"/>
<filter name="invoiced" string="Invoiced" domain="[('invoice_id','!=',False), ('to_invoice','&lt;&gt;',False)]" icon="terp-dolar"/>
<separator orientation="vertical"/>
</field>
</field>