~openerp-commiter/openobject-addons/extra-6.0

« back to all changes in this revision

Viewing changes to product_index/product_view.xml

  • Committer: Fabien Pinckaers
  • Date: 2008-01-06 15:02:59 UTC
  • Revision ID: fp@tinyerp.com-a7622d901b3f784e3dbb425d24a0c39656ab2fc9
New Module: product_index
        Manage indexes on product prices

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" ?>
 
2
<terp>
 
3
        <data>
 
4
 
 
5
                <record model="ir.ui.view" id="view_product_form_expiry">
 
6
                        <field name="name">product.normal.form</field>
 
7
                        <field name="model">product.product</field>
 
8
                        <field name="inherit_id" ref="product.product_normal_form_view" />
 
9
                        <field name="type">form</field>
 
10
                        <field name="arch" type="xml">
 
11
                                <page string="Descriptions" position="before">
 
12
                                        <page string="Indexes">
 
13
                                                <field name="buyer_price"/>
 
14
                                                <field name="index_date" required="1"/>
 
15
                                                <field name="list_price_index"/>
 
16
                                                <field name="standard_price_index"/>
 
17
                                                <field name="buyer_price_index"/>
 
18
                                                <newline/>
 
19
                                                <separator string="Sale indexes" colspan="2"/>
 
20
                                                <separator string="Purchase indexes" colspan="2"/>
 
21
                                                <field name="index_sale" colspan="2" nolabel="1"/>
 
22
                                                <field name="index_purchase" colspan="2" nolabel="1"/>
 
23
                                        </page>
 
24
                                </page>
 
25
                        </field>
 
26
                </record>
 
27
 
 
28
</data>
 
29
</terp>