on my object, I have a link to 'product.product'
as many2one field, in my object view, I registered product_id
field:
class my_object(osv.osv):
_columns = {
'product_id': fields.many2one('product.product', 'Product'),
}
<field context="{'group_by':'categ_id','search_default_filter_to_sell':1}" name="product_id" />
(Please take a look at 'product.product' search view at addons/products/product_view.xml)
when i select "Search More ..."
option from dropdown, the tree view will just filtered by 'search_default_filter_to_sell'
and group_by
filter is not activated, I tried all available group_by
filters from product.product
search view and no thing happen.
all objects with search-view that have group_by filter has this issue when you link them with many2one relation.
is this a bug? or i did something wrong?
I'm using Openerp v7.0, windows7, firefox21.