Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
3 Antwoorden
7359 Weergaven

I need to get the current company language to be used in some official reports which can’t be based on the current user language, can anyone help me ?

Avatar
Annuleer
Beste antwoord

Technically you can access the current company language by using the script env.user.company_id.partner_id.lang

Avatar
Annuleer
Beste antwoord

A company is related to a partner. You can retrieve the language from that partner.

Avatar
Annuleer
Beste antwoord

This is what someone might be looking for:

from odoo.tools import get_lang

get_lang(self.env).code


Avatar
Annuleer