diff --git a/partner_profiles/models/res_partner.py b/partner_profiles/models/res_partner.py index cb06b44..1c7f082 100644 --- a/partner_profiles/models/res_partner.py +++ b/partner_profiles/models/res_partner.py @@ -167,6 +167,11 @@ class res_partner(models.Model): partner.create(values) partner._compute_public_profile_id() + def _contact_fields(self): + """ Returns the list of contact fields that are synced from the parent + when a partner is attached to him. """ + return ['title'] + ################################################################################## ## Planned actions ##################################################################################