Odoo13-CE: Module: crm.lead: What inherit_id 我需要继承下面的视图(见截图)?

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

Module: crm.lead: inherit_id 继承下面的视图需要什么(看截图)?

<field name="inherit_id" ref="crm.quick_create_opportunity_form"/>

所属的inherit_id Inheritance fields: 当前视图的父视图,默认不设置。使用 ref 属性指定父级:

<field name="inherit_id" ref="crm.quick_create_opportunity_form"/>

然后您可以定位到父 xml 视图以使用 xpathfield 进行修改。

希望这个回答能对您有所帮助。