Display only lines > 0, negative lines are not interesting

This commit is contained in:
Guewen Baconnier
2014-09-15 16:36:56 +02:00
parent a849db78a7
commit 239d5127bb

View File

@@ -8,7 +8,7 @@
<field name="arch" type="xml">
<filter name="supplier" position="after">
<separator/>
<filter name="has_stock_real" string="Has Real Stock" domain="[('stock_real', '!=', 0.0)]" help="The location contains the product"/>
<filter name="has_stock_real" string="Has Real Stock" domain="[('stock_real', '>', 0.0)]" help="The location contains the product"/>
</filter>
</field>
</record>