Add the Ship field as a drop down list field of the Ship object to the order lines next to quantity
i tried this code but it gives an error
** ParseError: "ValidateError
Field(s) `arch` failed against a constraint: Invalid view definition
Error details:
Field `origin` does not exist
**
<record model="ir.ui.view" id="ship_orderline">
<field name="model">sale.order.line</field>
<field name="name">sale.tree.orderline</field>
<field name="inherit_id" ref="sale.view_order_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='order_line']/tree/field[@name='product_uom_qty']" position="before">
<field name="ship"/>
</xpath>
</field>
</record>