[MERGE]:merged abo's changes
[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" version="7.0">
10                     <separator string="Stock Location Analysis"/>
11                     <group>
12                         <field name="from_date"/>
13                         <field name="to_date"/>
14                     </group>
15                     <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)"/>
16                     <footer>
17                         <button name="action_open_window" string="Open Product" type="object" class="oe_highlight"/>
18                         or
19                         <button string="Cancel" class="oe_link" special="cancel" />
20                     </footer>
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>