Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odgovori
2462 Prikazi

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

 

Avatar
Opusti
Best Answer

<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>
 

 

 

Avatar
Opusti