This question has been flagged
1 Reply
2286 Views

I tried to edit the form view of invoice by developer mode, I opened partner_id and in the context, wrote 'show_website':1 as there was same for address, but website is not added in form view.

Avatar
Discard
Best Answer

Hello,

It is not simple as you guessed ..., you have to add 'show_website' to the name_get check list in the res_partner.py

Here is the part you'll add your context check.

You can take the show_email as an example.

I think you'll add something like:

if context.get('show_website') and record.website:
name = "%s

It is better to inherit this function rather than directly editing it.

I hope it'll be helpful,

Regards,

Avatar
Discard
Author

Thanks:)