隐藏或删除继承的按钮Odoo

时间:2018-01-15 14:59:01

标签: python inheritance xpath odoo-8 odoo

我想在机会视图中隐藏2个按钮:' 创建报价' &安培; ' 转换为报价' 这两个按钮是使用 sale_crm (默认odoo模块)模块中的xpath创建的,该模块未直接在机会表单视图中实现。

这是来自 sale_crm 模块的代码

<xpath expr="//field[@name='stage_id']" position="before">
  <button attrs="{'invisible': [('probability', '&lt;', 100)]}" 
         string="Create Quotation" name="618" type="action"/>
  <button attrs="{'invisible': [('probability', '=', 100)]}" 
         string="Convert to Quotation" name="618" type="action" 
         class="oe_highlight"/>
</xpath>

如何将其隐藏在自定义模块中

1 个答案:

答案 0 :(得分:2)

我发现它的版本是8,所以:

<record model="ir.ui.view" id="crm_case_form_view_oppor_inherit">
<field name="name">CRM - Opportunities - Quote Second Inherit</field>
<field name="model">crm.lead</field>
<field name="inherit_id" ref="sale_crm.crm_case_form_view_oppor"/>
<field name="arch" type="xml">
    <data>
        <xpath expr="//field[@string='Create Quotation']" position="attributes">
            <attribute name="invisible">True</attribute>
        </xpath>
        <xpath expr="//field[@string='Convert to Quotation']" position="attributes">
            <attribute name="invisible">True</attribute>
        </xpath>
    </data>
</field>

您可以尝试使用它。我希望这对你有所帮助。