You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

15 lines
630 B

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!-- Inherited form view of stock warehouse to add the field for
checking whether the warehouse is a store-->
<record id="view_warehouse" model="ir.ui.view">
<field name="name">stock.warehouse.view.form.inherit.website.in.store.pickup</field>
<field name="model">stock.warehouse</field>
<field name="inherit_id" ref="stock.view_warehouse"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='code']" position="after">
<field name="is_store"/>
</xpath>
</field>
</record>
</odoo>