hi, i m read this documentation. and found the related field so i want to understand actually how to use related field in country->state->city example.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Księgowość
- Zapasy
- PoS
- Project
- MRP
To pytanie dostało ostrzeżenie
I normally use related fields only if I need some value from a parent model (M2O) to use it a view. Like when using domain filters, making fields invisible/readonly, itd.. Else just use M2O fields. Even with related fields you need a M2O field to use it in relate.
For your example I think you can't the way you want. The res_country_state model has the country_id, so you could get the country name from the res_country_state model and not the other way around.
country_name = fields.Char(relate='country_id.name')
You do not need to create related field you just use many2one field to access it.
Podoba Ci się ta dyskusja? Dołącz do niej!
Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!
Zarejestruj sięPowiązane posty | Odpowiedzi | Widoki | Czynność | |
---|---|---|---|---|
separate long name into several field
Rozwiązane
|
|
1
mar 15
|
5456 | |
|
0
cze 15
|
3132 | ||
Concatenate two fields in a third one
Rozwiązane
|
|
2
sie 24
|
2362 | |
|
2
cze 19
|
2873 | ||
|
0
mar 24
|
3333 |
you want to fetch country name from state->country?