forked from camptocamp/stock-logistics-warehouse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstock_view.xml
More file actions
17 lines (17 loc) · 679 Bytes
/
stock_view.xml
File metadata and controls
17 lines (17 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="view_location_form" model="ir.ui.view">
<field name="name">stock.location.form</field>
<field name="model">stock.location</field>
<field name="inherit_id" ref="stock.view_location_form"></field>
<field name="arch" type="xml">
<xpath expr="/form/group" position="inside">
<group string="Inventory valuation" groups="stock.group_inventory_valuation">
<field name="consider_internal"/>
</group>
</xpath>
</field>
</record>
</data>
</openerp>