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.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Accounting
- Inventory
- PoS
- Project management
- MRP
This question has been flagged
1
Reply
2411
Views
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 <%s>" % (name, record.website)
It is better to inherit this function rather than directly editing it.
I hope it'll be helpful,
Regards,
Thanks:)
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up