Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
4998 มุมมอง

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​

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
1
ธ.ค. 21
2207
get the value of a field of other model แก้ไขแล้ว
3
มี.ค. 24
7171
2
ก.พ. 24
2390
4
พ.ค. 20
3466
0
พ.ย. 24
9401