Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
3341 Widoki

Hello everyone,

i need to add a domian in Many2one field that exist in One2many Field 

###### country Model ####

country= fields.Char(string=" country ")


##### city Model ###

country _ids = fields.Many2one(comodel_name='  country ')

city = fields.Char(string="City")

###### Visit Model ####

visit =  fields.Char(string="Visit")

city_ids = fields.Many2one(comodel_name=' city ')

#######

let's suppose that i have this data:

country: USA, SPAIN, ITALIE

city: 

[USA: NEW YOUR, MIAMI,Colorado ]

[SPAIN: MADRID, BARCALONE]

[ITALIE: ROMA, NAPOLI]

#######

###### visit planning #####

date =   fields.Date(string="Visit")

country =  fields.Many2one(comodel_name='  country ')

city =  fields.One2many(comodel_name='  city ')


so i want at this point that when i select a country for Example SPAIN

i want to see only   MADRID and BARCALONE in my One2many field


how can i do that and thank you


Awatar
Odrzuć
Autor Najlepsza odpowiedź

I fix this problem with this domain: 

* you need to use this word "parent" 

domain="[('country','=',parent. country )]"

that's it 

thank you

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
1
sie 19
2412
1
wrz 17
5363
1
mar 23
2338
0
gru 22
2983
1
paź 22
3831