add stock picking group

This commit is contained in:
ivan deng
2018-12-26 20:41:49 +08:00
parent 05560de690
commit a71ff6f9eb
40 changed files with 797 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<odoo>
<data>
<!-- stock -->
<record id="app_view_location_form" model="ir.ui.view">
<field name="name">app.stock.location.form</field>
<field name="model">stock.location</field>
<field name="inherit_id" ref="stock.view_location_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='location_id']" position="attributes">
<!-- Add your fields or attributes here -->
<attribute name="widget">ztree_select</attribute>
<attribute name="ztree_parent_key">location_id</attribute>
</xpath>
</field>
</record>
</data>
</odoo>