<field name="arch" type="xml">
<search>
<field name="product_id"/><--!搜索-->
<!--<!–<field name="product_id" string="产品属性" filter_domain="[('product_id.attribute_value_ids','ilike',self)]"/>–>-->
<field name="qo_id"/>
<field name="lot_id"/>
<filter string="批次"
domain="[('lot_id','!=',False)]"/><--!筛选-->
<group expand="0" string="Group By...">
<filter string="产品" domain="[]"
name="groupby_product"
context="{'group_by': 'product_id'}"/>
<filter string="质检单" domain="[]"
name="groupby_qo_id"
context="{'group_by': 'qo_id'}"/>
<filter string="批次" domain="[]"
name="groupby_lot_id"
context="{'group_by': 'lot_id'}"/>
</group><--!分组-->
</search>
</field>
注意:搜索的字段必须为store=True,否则会报错。