[FIX] Schedule jobs even if their next time has passed.
[odoo/odoo.git] / addons / stock_location / stock_view.xml
1 <?xml version="1.0"?>
2 <openerp>
3     <data>
4
5        <record id="stock_location_path_tree" model="ir.ui.view">
6             <field name="name">stock.location.path.tree</field>
7             <field name="model">stock.location.path</field>
8             <field name="type">tree</field>
9             <field name="arch" type="xml">
10                 <tree string="Location Paths">
11                     <field name="product_id"/>
12                     <field name="location_from_id"/>
13                     <field name="location_dest_id"/>
14                     <field name="name"/>
15                 </tree>
16             </field>
17         </record>
18
19        <record id="stock_location_path_form" model="ir.ui.view">
20             <field name="name">stock.location.path.form</field>
21             <field name="model">stock.location.path</field>
22             <field name="type">form</field>
23             <field name="arch" type="xml">
24                 <form string="Location Paths">
25                     <field name="name"/>
26                     <newline/>
27                     <field name="product_id"/>
28                     <newline/>
29                     <field name="location_from_id"/>
30                     <field name="location_dest_id"/>
31                     <field name="auto"/>
32                     <field name="delay"/>
33                 </form>
34             </field>
35         </record>
36
37        <record id="product_normal_form_inherit_location" model="ir.ui.view">
38             <field name="name">product.product.form</field>
39             <field name="model">product.product</field>
40             <field name="type">form</field>
41             <field name="inherit_id" ref="product.product_normal_form_view"/>
42             <field name="arch" type="xml">
43                 <page string="Procurement &amp; Locations">
44                     <field name="path_ids" editable="bottom" colspan="4" nolabel="1">
45                         <tree string="Location Paths" editable="bottom">
46                             <field name="location_from_id"/>
47                             <field name="location_dest_id"/>
48                             <field name="auto"/>
49                             <field name="delay"/>
50                             <field name="name"/>
51                         </tree>
52                     </field>
53                 </page>
54             </field>
55        </record>
56
57     </data>
58 </openerp>