跳至內容
選單
此問題已被標幟
1 回覆
3550 瀏覽次數

dear odooers 
i'am added a many2many field in product.template that contains a car details in lines 
can filter or search in columns of the line in product search bar 

class autopart(models.Model):
_inherit = 'product.template'
related = fields.Many2many(comodel_name="relate",relation='car', string="", )
class relate(models.Model):
_name = 'relate'
_rec_name = 'code'

code = fields.Char(string="product Code", required=False)
car = fields.Many2one(comodel_name="cars", string="car", required=True, ondelete='restrict', )
model = fields.Many2many(comodel_name="models", string="",domain="[('car','=', car )]" )

start = fields.Char(string="", required=False, )
end = fields.Char(string="", required=False, )
rang = fields.One2many(comodel_name="yearrange", inverse_name="product_id", store=True, string="Years")
pro = fields.Integer(string="", required=False, )

頭像
捨棄
最佳答案

Hello,

Yes you can added many2many field in search bar like in product screen use tags but if you want to added this field in group by than you can't.

THANKS 


頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
0
8月 19
2716
1
2月 23
1946
2
2月 23
2750
1
6月 22
2836
0
6月 22
2355