Hello all,
In the res.partner model, I have found this boolean field :
employee = fields.Boolean(help="Check this box if this contact is an Employee.")
I don't find any place where this field is used programmatically. All my partner has this value at False in the database, even if they have a user or an employee associated with.
Is this field employee used somewhere in Python? What is his utility? When does his value change?
Thanks