Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
2481 มุมมอง

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>
 

 

 

อวตาร
ละทิ้ง