如何使自定义字段出现

How to make a custom field appear

目的是在 "Other Info" 选项卡的发票(客户发票)中显示一个复选框。有一个字段 "Journal Entry" (move_id),它必须出现在该字段下方。

所以我创建了一个如下所示的自定义字段:

    _columns = {"xx_lawyer": fields.boolean("Lawyer")}

然后我设置了xml,(理论上)应该让该字段出现:

        <record id="view_invoice_form_xx_lawyer" model="ir.ui.view">
        <field name="name">account.invoice.form</field>
        <field name="model">account.invoice</field>
        <field name="inherit_id" ref="account.invoice_form"/>
        <field name="arch" type="xml">
            <xpath expr="//field[@name='move_id']" position="after">
                <field name="xx_lawyer"/>
            </xpath>
        </field>
    </record>

然而它没有显示该字段,我对我做错了什么一无所知。我还将 xml 文件包含在 openerp.py" 文件中。

如有任何帮助,我们将不胜感激。

在您的情况下,不需要使用 xapth。 您可以使用字段属性。

尝试使用此代码

<record id="view_invoice_form_xx_lawyer" model="ir.ui.view">
    <field name="name">view.invoice.form.xx.lawyer</field>
    <field name="model">account.invoice</field>
    <field name="inherit_id" ref="account.invoice_form" />
    <field name="arch" type="xml">
        <field name="move_id" position="after">
            <field name="xx_lawyer" />
        </field>
    </field>
</record>