コンテンツへスキップ
メニュー
この質問にフラグが付けられました

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
2776
1
2月 23
1979
2
2月 23
2780
1
6月 22
2877
0
6月 22
2390