Module: crm.lead: What inherit_id do I need to inherit the following view (see the screenshot)?

CodePudding user response:
<field name="inherit_id" ref="crm.quick_create_opportunity_form"/>
CodePudding user response:
The inherit_id it's belong to Inheritance fields: the current view’s parent view, unset by default. Specify the parent using the ref attribute:
<field name="inherit_id" ref="crm.quick_create_opportunity_form"/>
Then you can positioned on the parent xml view to modificated using xpath or field.
I hope this answer can be helpful for you.
