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

Hi Community,

I have one Many2one field is City. and i used it on two places one as a From_City second as a To_City. so i need when i select the city A from From_City. now value is hide into To_City.

How can i do it. if you know please suggest me.

Thanks in Advanced.

形象
丢弃

Domain in many2one filed: https://goo.gl/CBP9og

最佳答案

you can set dynamic domain on to city while change from city

@api.onchange('from_city_id')
def onchange_from_city(self):
res = {
'domain' : {
     'to_city_id' : [('id', '!=', self.from_city_id)],
}
}
return res​

形象
丢弃
相关帖文 回复 查看 活动
1
12月 21
2210
3
3月 24
7175
2
2月 24
2395
4
5月 20
3466
0
11月 24
9404