跳至内容
菜单
此问题已终结
1 回复
2483 查看

I want to add additinal fields in  one2many purchase.order.line. How can i do that using xpath??

 

形象
丢弃
最佳答案

<xpath expr="//label[@string='existing_field']" position="after">  #after or before
    <field name="your_field"/>
</xpath>

but i i think is easier:

<field name="existing_field" position="after"> #after or before
    <field name="your_field"/>

</field>
 

 

 

形象
丢弃