Hello how do i update a releated fields globaly?
exemple: i have 2 classes
"class participant
"_name = 'participant'
"name=Field.Char("Name") "phone=Field.Char("Phone")
#and
"class activity
"_name = 'activity'
"name=Field.Date("Date") "participant=Field.Many2one("participant", "Participant")
"phone=Field.Char("Phone", related="participant.phone")
Now i want when i put a new value on activity.phone, this new value should automaticaly update the participant.phone one .
Thanks