콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
5128 화면

So I'm trying to add an extra column in my customers list view. I created a new column for it called x_company and now I'm trying to get the field to appear on the screen.

This is what I currently got:

<record id="view_partner_tree_inherit" model="ir.ui.view"
<field name="name">res.partner.tree</field>
<field name="model">res.partner</field>
<field name="inherit_id" ref="base.view_partner_tree"/>
<field name="arch" type="xml">
<tree string="Contacts">
<field name="x_company"/>
</tree>
</field
</record

Of course with the necessary tabs in place, as you can see I'm trying to add the column x_compay which is defined in a custom python file. I know the xpath determines the position of the field so I'm wondering if it has to be inside the tree tag or outside, and if what I'm doing is alright.

Thanks in advance 

아바타
취소
베스트 답변

        <record model="ir.ui.view" id="base_view_partner_tree_inherit">
            <field name="name">res.partner.tree.inherit</field>
            <field name="model">res.partner</field>
            <field name="inherit_id" ref="base.view_partner_tree" />
            <field name="arch" type="xml">
                <field name="email" position="before">
                    <field name="x_company" />
                </field>
            </field>
        </record>

OR

<xpath expr="//tree[@string='Contacts']" position="inside">
     <field name="x_company"/>
</xpath>

아바타
취소