-1

I need to format a report with the currency of the company's user in Odoo 8.for that I have to get the currency (res.currency) of the current company.

How could I have this data using the old api (API V7).

Thanks.

zaizousf
  • 93
  • 9

1 Answers1

2

You can use :

self.pool.get('res.users').browse(cr, uid, uid).company_id.currency_id.id
Quentin THEURET
  • 1,222
  • 6
  • 12