[MERGE]
[odoo/odoo.git] / addons / stock / wizard / stock_location_product_view.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data>
4         <record id="view_stock_location_product" model="ir.ui.view">
5             <field name="name">Products by Location</field>
6             <field name="model">stock.location.product</field>
7             <field name="type">form</field>
8             <field name="arch" type="xml">
9                <form string="View Stock of Products">
10                                 <separator string="Stock Location Analysis" colspan="4"/>
11                                 <field name="from_date" colspan="4"/>
12                                 <newline/>
13                                 <field name="to_date" colspan="4"/>
14                                 <newline/>
15                                 <label string=""/>
16                                 <label string="(Keep empty to open the current situation. Adjust HH:MM:SS to 00:00:00 to filter all resources of the day for the 'From' date and 23:59:59 for the 'To' date)" align="0.0" colspan="3"/>
17                                 <separator string="" colspan="4" />
18                                 <label string=""/>
19                                         <button special="cancel" string="_Cancel" icon="gtk-cancel" />
20                         <button name="action_open_window" string="Open Product" type="object" icon="gtk-ok"/>
21                         </form>
22             </field>
23                 </record>
24
25
26         <act_window name="Products by Location"             
27                     res_model="stock.location.product"
28                     src_model="stock.location"
29                     view_mode="form"
30                     target="new"        
31             key2="client_action_multi"    
32                     id="action_view_stock_location_product"/>                   
33     </data>
34 </openerp>