コンテンツへスキップ
メニュー
この質問にフラグが付けられました
5 返信
5021 ビュー

Hello:

Please, i want to add a field in the class "account invoice" but under this: 

<notebook colspan="4">

<page string="Invoice Lines">

<field name="invoice_line" nolabel="1" widget="one2many_list" context="{'type': type}">

<tree string="Invoice Lines" editable="bottom">

<field name="field"/>

Howcan i use xpath to locate it please.

Thanks a lot in advance

アバター
破棄
最善の回答

you can also do it in another way

if you can not fine the technical name of the field

you can do it with the string name

<xpath expr="//field[@string='String_Name']" position="after">
<field name="field_name"/>
</xpath>

アバター
破棄
著作者 最善の回答

Here is the answer:

<xpath expr="//field[@name='invoice_line']/tree/field[@name='product_id']"

position="before">

<field name="project_name"/>

</xpath>

I have tried it and it works perfectly :)

アバター
破棄

same as it works in prior versions :) xpath is working with any xml file.. it is not related to odoo version :)

hi, where can I read the docs about xpath?

Doesn't seem to be too much documentation about xpath. A bit of info here: https://www.odoo.com/documentation/8.0/reference/views.html

関連投稿 返信 ビュー 活動
0
3月 25
1418
0
1月 25
3495
1
8月 23
14855
1
8月 23
13507
1
7月 23
10486