Hi everyone,
When I create a new contact, the company_type is defined as person. I would like to set it to company by default.
So I created a model that inherited res.partner model, and I define is_company to True by default
class ResPartner(models.Model):
_inherit = 'res.partner'
brand_name = fields.Char()
is_company = fields.Boolean(default=True)
But it stays as person as default.
What should I do ?
Thanks a lot