[FIX] account invoice analysis exclude proforma from invoiced
authorAntony Lesuisse <al@openerp.com>
Thu, 20 Mar 2014 10:15:55 +0000 (11:15 +0100)
committerAntony Lesuisse <al@openerp.com>
Thu, 20 Mar 2014 10:15:55 +0000 (11:15 +0100)
bzr revid: al@openerp.com-20140320101555-hw2bgaqs2kw0b7of

addons/account/report/account_invoice_report_view.xml

index 24723d7..eebc95a 100644 (file)
@@ -25,7 +25,7 @@
                 <separator/>
                 <filter string="Draft" icon="terp-document-new" domain="[('state','=','draft')]" help = "Draft Invoices"/>
                 <filter string="Pro-forma" icon="terp-gtk-media-pause" domain="['|', ('state','=','proforma'),('state','=','proforma2')]" help = "Pro-forma Invoices"/>
-                <filter string="Invoiced" name="current" icon="terp-check" domain="[('state','not in', ('draft','cancel'))]" help = "Open and Paid Invoices"/>
+                <filter string="Invoiced" name="current" icon="terp-check" domain="[('state','not in', ('draft','cancel','proforma','proforma2'))]" help = "Open and Paid Invoices"/>
                 <separator/>
                 <filter icon="terp-personal" string="Customer" name="customer" domain="['|', ('type','=','out_invoice'),('type','=','out_refund')]" help="Customer Invoices And Refunds"/>
                 <filter icon="terp-personal" string="Supplier" domain="['|', ('type','=','in_invoice'),('type','=','in_refund')]" help="Supplier Invoices And Refunds"/>