[REV] base, res.currency: reverted revision 4982 because it was causing an error when a res.currency.rate was searched with a domain like [('name', '=', '30-20-2013')]. This patch will be back with a graceful solution to fix the error

bzr revid: qdp-launchpad@openerp.com-20131030172805-7ndvj8vj4h31wre8
This commit is contained in:
Quentin (OpenERP) 2013-10-30 18:28:05 +01:00
parent 01c06b08db
commit ca92afb39a
1 changed files with 2 additions and 2 deletions

View File

@ -249,8 +249,8 @@ class res_currency_rate(osv.osv):
_description = "Currency Rate"
_columns = {
'name': fields.datetime('Date', required=True, select=True),
'rate': fields.float('Rate', digits=(12, 6), help='The rate of the currency to the currency of rate 1'),
'name': fields.date('Date', required=True, select=True),
'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"),
}