Skip to content
Snippets Groups Projects
Commit d8ed922e authored by Antony Lesuisse's avatar Antony Lesuisse
Browse files

[FIX] res_currency remove warning about float field

bzr revid: al@openerp.com-20120208224031-korqq1crt0u3wpuh
parent 94145b29
No related branches found
No related tags found
No related merge requests found
......@@ -233,8 +233,7 @@ class res_currency_rate(osv.osv):
_columns = {
'name': fields.date('Date', required=True, select=True),
'rate': fields.float('Rate', digits=(12,6), required=True,
help='The rate of the currency to the currency of rate 1'),
'rate': fields.float('Rate', digits=(12,6), help='The rate of the currency to the currency of rate 1'),
'currency_id': fields.many2one('res.currency', 'Currency', readonly=True),
'currency_rate_type_id': fields.many2one('res.currency.rate.type', 'Currency Rate Type', help="Allow you to define your own currency rate types, like 'Average' or 'Year to Date'. Leave empty if you simply want to use the normal 'spot' rate type"),
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment