Se rendre au contenu
Menu
Cette question a été signalée
4 Réponses
1499 Vues

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 

Avatar
Ignorer
Meilleure réponse

I believe you can utilize user defaults for this purpose.

Enable debug mode.

Navigate to the contact page.

Tap on the debug icon.

Select the user defaults option.

Avatar
Ignorer
Meilleure réponse

Hello Arthur LEHAVRE ,


Use this code you no need to override the is_company field.

class ResPartner(models.Model):
_inherit = 'res.partner'

@api.onchange('company_type')
def onchange_company_type(self):
rec = super().onchange_company_type()
self.is_company = False
return rec

Hope this helps!

Thanks & Regards,

Name : Yahoo Baba

Email:  yahoobaba077@gmail.com 

Avatar
Ignorer
Auteur Meilleure réponse

Thank you ! Indeed it works great ! And is there way to set it up in my model ?

Avatar
Ignorer
Meilleure réponse

i think you can use user defaults 

activate debug mode

open the contact page 

press on debug icon

click on user defaults 


Avatar
Ignorer
Publications associées Réponses Vues Activité
0
déc. 24
1040
3
juil. 25
2156
1
juin 25
2677
2
mai 25
2142
1
mai 25
1330