diff --git a/addons/account/invoice.py b/addons/account/invoice.py index a414a1a9fd6..fc30219caef 100644 --- a/addons/account/invoice.py +++ b/addons/account/invoice.py @@ -62,7 +62,6 @@ class account_invoice(osv.osv): return cr.fetchone()[0] def _get_currency(self, cr, uid, context): - return pooler.get_pool(cr.dbname).get('res.currency').search(cr, uid, [('rate','=',1.0)])[0] return pooler.get_pool(cr.dbname).get('res.users').browse(cr, uid, [uid])[0].company_id.currency_id.id def _get_journal_analytic(self, cr, uid, type_inv, context={}):