跳至内容
菜单
此问题已终结
1 回复
11827 查看

Hello All,

i want to set domain on Many2one field based on Many2one's sub Many2many field. 

i have one Many2one field(A) and this field has Many2many field, and i have another Many2one field(B), i want to filter field B record based on field A's sub many2many field's record.

field B is of model(a.a) and A's many2many sub field model is a.a so how to do this.


 

形象
丢弃
最佳答案

try this

@api.onchange('your_m2m_field')
def _get_product_domain(self):
self.ensure_one()
self.product_id = False
products = self.your_m2m_field.mapped('product_id').mapped('id') #you rewrite this line as per your requirement
if products:
return {'domain':{'product_id':[('id', 'in', products)]}}
else:
return {'domain':{'product_id':[('id', 'in', [])]}}
形象
丢弃

Thanks, Rakesh,
it's really useful for me.

相关帖文 回复 查看 活动
2
5月 24
7660
1
10月 22
3677
8
2月 17
8163
0
1月 17
5781
2
2月 24
12407