If you are working in Odoo, often you will have the situation to move fields from one place to other.
here is the quick snippet to do it
<xpath expr="//field[@name='targetfield']" position="before">
                    <field name="the_field_to_be_moved"
                           position="move"/>
               </xpath>
    
Top comments (0)