~openerp-community/openerp-canada/7.0-missing-payroll-access

« back to all changes in this revision

Viewing changes to res_currency_print_on_check/currency_view.xml

  • Committer: Virgil Dupras
  • Date: 2013-06-10 16:13:15 UTC
  • mto: This revision was merged to the branch mainline in revision 14.
  • Revision ID: virgil.dupras@savoirfairelinux.com-20130610161315-i9cnvoosldhxc18d
[FIX] Renamed module name to be consistent with the supplied field's new name.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
<openerp>
 
3
    <data>
 
4
 
 
5
        <record id="view_currency_form" model="ir.ui.view">
 
6
            <field name="name">res.currency.form.print_on_check</field>
 
7
            <field name="model">res.currency</field>
 
8
            <field name="inherit_id" ref="base.view_currency_form"/>
 
9
            <field name="arch" type="xml">
 
10
                <xpath expr="//field[@name='rate']" position="after">
 
11
                    <field name="print_on_check"/>
 
12
                </xpath>
 
13
            </field>
 
14
        </record>
 
15
 
 
16
    </data>
 
17
</openerp>