콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
2465 화면

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>
 

 

 

아바타
취소