odoo/addons/stock/res_config_view.xml

71 lines
2.8 KiB
XML
Raw Normal View History

<openerp>
<data>
<record id="view_stock.config.settings" model="ir.ui.view">
<field name="name">Warehouse Application</field>
<field name="model">stock.config.settings</field>
<field name="type">form</field>
<field name="arch" type="xml">
<form string ="Warehouse Application">
<separator string="Traceability" colspan="4"/>
<group colspan="2" col="4">
<newline/>
<field name="group_stock_production_lot"/>
<newline/>
<field name="group_stock_tracking_lot"/>
<newline/>
<field name="module_product_expiry"/>
</group>
<separator string="Logistic" colspan="4"/>
<group colspan="2" col="4">
<newline/>
<field name="module_stock_no_autopicking"/>
<newline/>
<field name="module_stock_invoice_directly"/>
<newline/>
</group>
<separator string="Products" colspan="4"/>
<group colspan="4" col="8">
<group colspan="2" col="4">
<field name="group_stock_packaging"/>
<newline/>
<field name="group_uom"/>
<newline/>
</group>
<group colspan="2" col="4">
<newline/>
<field name="group_stock_inventory_valuation"/>
<newline/>
<field name="group_stock_counterpart_location"/>
<newline/>
</group>
</group>
<separator string="Partners" colspan="4"/>
<group colspan="2" col="4">
<newline/>
<field name="group_stock_inventory_properties"/>
<newline/>
<field name="module_claim_from_delivery"/>
<newline/>
</group>
</form>
</field>
</record>
<record id="action_stock.config.settings" model="ir.actions.act_window">
<field name="name">Configure Warehouse</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">stock.config.settings</field>
<field name="view_mode">form</field>
<field name="target">new</field>
</record>
<menuitem id="menu_stock.config.settings" name="Warehouse" parent="base.menu_config"
sequence="3" action="action_stock.config.settings"/>
</data>
</openerp>