Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
1 Відповісти
989 Переглядів

Hi Family

please I want to edit my contact module  company types from  to Client and Integrator but I keep getting this error message 

please I need help dear odoo'ers with a video description

Аватар
Відмінити

In this case, you need to intervene with Python code. What version of Odoo are you using and where is it installed?

Автор

hi Lex I am using version 16 and its online

You should use Contact tags instead of changing this - these two types drive a lot of other logical behaviors in Odoo and it would be a significant undertaking to teach Odoo about a new type.

Найкраща відповідь

Hi,
If you really need to do it, you can do it by inheriting the model and changing the selection values or you can change it from the translation.

class Partner(models.Model):

    _inherit = "res.partner"


    company_type = fields.Selection(selection=[('person', 'Client'), ('company', 'Integrator')])

Thanks

Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
0
бер. 21
68
1
бер. 15
3958
hide some contacts Вирішено
2
груд. 20
3977
2
лип. 25
1012
1
лип. 25
1359