~camptocamp/account-financial-tools/credit_control_report_improvement_vre

« back to all changes in this revision

Viewing changes to currency_rate_update/company_view.xml

  • Committer: Joël Grand-Guillaume
  • Date: 2011-08-12 12:35:23 UTC
  • Revision ID: joel.grandguillaume@camptocamp.com-20110812123523-hksk8nby1tp64rx1
[ADD] First commit of the first financial modules to move in our new public branch
(lp:c2c-addons/6.1  rev 1)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<openerp>
 
2
    <data>
 
3
        <record model="ir.ui.view" id="currency_auto_comp">
 
4
            <field name="name">res.company.form.inherit</field>
 
5
            <field name="model">res.company</field>
 
6
            <field name="inherit_id" ref="base.view_company_form"/>
 
7
            <field name="type">form</field>
 
8
            <field name="arch" type="xml">
 
9
                <notebook position="inside">
 
10
                    <page string="Currency auto update configuration">
 
11
                       <field name="auto_currency_up" on_change="_on_change_auto_currency_up(auto_currency_up)"/> 
 
12
                        <field name="interval_type" on_change="_on_change_intervall(interval_type)"/>
 
13
                        <field name="multi_company_currency_enable"/>
 
14
                        <separator string="Currency updates services" colspan="4"/>
 
15
                        <field name="services_to_use" colspan="4" nolabel="1"/>
 
16
                        <button name="button_refresh_currency"  string="Refresh currencies" type='object' />
 
17
                    </page>
 
18
                </notebook>
 
19
            </field>
 
20
        </record>
 
21
    </data>
 
22
</openerp>
 
23