Home > Software engineering >  Odoo13-CE: Module: crm.lead: What inherit_id do I need to inherit the following view (see the screen
Odoo13-CE: Module: crm.lead: What inherit_id do I need to inherit the following view (see the screen

Time:02-02

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

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.

  •  Tags:  
  • Related