[FIX] hr : hr_timesheet_invoice - missing invoiced button

lp bug: https://launchpad.net/bugs/909167 fixed

bzr revid: bde@tinyerp.com-20111228104810-5fkm1b55bmh1iwvi
This commit is contained in:
Ferdinand @ Camptocamp 2011-12-28 16:18:10 +05:30 committed by Bharat Devnani (OpenERP)
parent 031ecd675c
commit a7e15128e3
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" context="{'to_invoice': 1}" domain="[('invoice_id','!=',False), ('to_invoice','&lt;&gt;',False)]" icon="terp-dolar"/>
<separator orientation="vertical"/>
</field>
</field>