1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/delivery_shiprocket/views/stock_picking.xml
2024-12-10 09:04:09 +07:00

19 lines
694 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="stock_picking_form_inherit_shiprocket" model="ir.ui.view">
<field name="name">stock.picking.form.shiprocket</field>
<field name="model">stock.picking</field>
<field name="inherit_id" ref="stock.view_picking_form"/>
<field name="arch" type="xml">
<xpath expr="//group[@name='other_infos']" position="before">
<group string="Shiprocket" invisible="country_code != 'IN'">
<field name="country_code" invisible="1"/>
<field name="eway_bill_number"/>
</group>
</xpath>
</field>
</record>
</odoo>