This question has been flagged
1 Reply
2056 Views

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

 

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