~sebastien.beau/openobject-addons/on-change-support-extra-addons

« back to all changes in this revision

Viewing changes to multi_company_currency/multi_currency_view.xml

  • Committer: mga at tinyerp
  • Date: 2008-08-28 09:03:40 UTC
  • mto: (3283.1.19 trunk-extra-addons)
  • mto: This revision was merged to the branch mainline in revision 3284.
  • Revision ID: mga@tinyerp.com-20080828090340-3x3u7ibqurzabmtl
Add new module that will allowes use to make multi company witi multi currency 
company 1 - > EUR
company 2 - > INR
company 3 - > USD
all with different conversion rate 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<terp>
 
3
        <data>
 
4
                <record id="view_currency_form_inherit" model="ir.ui.view">
 
5
                        <field name="name">res.currency.form.inherit</field>
 
6
                        <field name="model">res.currency</field>
 
7
                        <field name="type">form</field>
 
8
                        <field name="inherit_id" ref="base.view_currency_form" />
 
9
                        <field name="arch" type="xml">
 
10
                                <field name="name" select="1" colspan="4"
 
11
                                        position="replace">
 
12
                                        <field name="name" select="1" />
 
13
                                        <field name="company_id" select="2" />
 
14
                                </field>
 
15
                        </field>
 
16
                </record>
 
17
 
 
18
                <record id="view_company_form_inherit" model="ir.ui.view">
 
19
                        <field name="name">res.company.form.inherit</field>
 
20
                        <field name="model">res.company</field>
 
21
                        <field name="type">form</field>
 
22
                        <field name="inherit_id" ref="base.view_company_form"/>
 
23
                        <field name="arch" type="xml">
 
24
                                <page string="General Information" position="after">
 
25
                                        <page string="Currency">
 
26
                                                <field name="currency_ids" colspan="4" nolabel="1"/>
 
27
                                        </page>
 
28
                                </page>
 
29
                        </field>
 
30
                </record>
 
31
        </data>
 
32
</terp>
 
 
b'\\ No newline at end of file'