Files
stock-rma/rma/views/stock_warehouse.xml
Carlos Vallés Fuster a73d695719 [MIG] rma: migration to 17.0
[IMP] rma: test fixes
2024-03-25 11:32:30 +01:00

23 lines
919 B
XML

<?xml version="1.0" ?>
<odoo>
<record id="view_warehouse_form" model="ir.ui.view">
<field name="name">view_warehouse_form</field>
<field name="model">stock.warehouse</field>
<field name="inherit_id" ref="stock.view_warehouse" />
<field name="arch" type="xml">
<xpath expr="//field[@name='wh_output_stock_loc_id']" position="after">
<field name="lot_rma_id" />
</xpath>
<field name="resupply_wh_ids" position="after">
<field name="rma_in_this_wh" />
</field>
<xpath expr="//field[@name='out_type_id']" position="after">
<field name="rma_cust_in_type_id" />
<field name="rma_cust_out_type_id" />
<field name="rma_sup_in_type_id" />
<field name="rma_sup_out_type_id" />
</xpath>
</field>
</record>
</odoo>