[IMP] sale useability, fix stock, better uom handling
[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">Fill 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="Fill Inventory">
10                         <separator string="Fill Inventory for specific location" colspan="4" />
11                         <field name="location_id"/>
12                         <newline/>
13                         <field name="recursive"/>
14                                 <newline/>
15                         <separator string="" colspan="4" />
16                                         <button special="cancel" string="Cancel" icon='gtk-cancel'/>
17                     <button name="fill_inventory" string="Fill Inventory" type="object" icon="gtk-ok"/>
18              </form>
19             </field>
20                 </record>
21
22          <act_window name="Fill Inventory"                  
23                     res_model="stock.fill.inventory"
24                     src_model="stock.inventory"
25                     view_mode="form"
26                     target="new"        
27             key2="client_action_multi"    
28                     id="action_view_stock_fill_inventory"/>     
29
30     </data>
31 </openerp>