[MERGE] lp:~openerp-dev/openobject-addons/trunk-wiz-remove-btn-highlight-tch
[odoo/odoo.git] / addons / stock / wizard / stock_fill_inventory_view.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data>
4            <record id="view_stock_fill_inventory" model="ir.ui.view">
5             <field name="name">Import Inventory</field>
6             <field name="model">stock.fill.inventory</field>
7             <field name="type">form</field>
8             <field name="arch" type="xml">
9               <form string="Import Inventory" version="7.0">
10                   <header>
11                       <button name="fill_inventory" string="Fill Inventory" type="object" icon="gtk-ok" class="oe_highlight"/>
12                   </header>
13                   <separator string="Import current product inventory from the following location"/>
14                   <group>
15                       <field name="location_id"/>
16                       <field name="recursive"/>
17                       <field name="set_stock_zero"/>
18                   </group>
19               </form>
20             </field>
21         </record>
22
23          <act_window name="Import Inventory"
24             res_model="stock.fill.inventory"
25             src_model="stock.inventory"
26             view_mode="form"
27             target="new"
28             context="{'search_default_in_location':1}"
29             key2="client_action_multi"
30             id="action_view_stock_fill_inventory"/>
31
32     </data>
33 </openerp>