ACCOUNT: better fix for currency

bzr revid: ced-a1e2f71a57e10ae55b368b452240c7bc2f968ed1
This commit is contained in:
ced 2006-12-22 10:06:58 +00:00
parent 306b6ddf8c
commit 649a7fd09f
1 changed files with 5 additions and 1 deletions

View File

@ -62,7 +62,11 @@ class account_invoice(osv.osv):
return cr.fetchone()[0]
def _get_currency(self, cr, uid, context):
return pooler.get_pool(cr.dbname).get('res.users').browse(cr, uid, [uid])[0].company_id.currency_id.id
user = pooler.get_pool(cr.dbname).get('res.users').browse(cr, uid, [uid])[0]
if user.company:
return user.company_id.currency_id.id
else
return pooler.get_pool(cr.dbname).get('res.currency').search(cr, uid, [('rate','=',1.0)])[0]
def _get_journal_analytic(self, cr, uid, type_inv, context={}):
type2journal = {'out_invoice': 'sale', 'in_invoice': 'purchase', 'out_refund': 'sale', 'in_refund': 'purchase'}