Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
3 Odpowiedzi
7351 Widoki

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 ?

Awatar
Odrzuć
Najlepsza odpowiedź

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

Awatar
Odrzuć
Najlepsza odpowiedź

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

Awatar
Odrzuć
Najlepsza odpowiedź

This is what someone might be looking for:

from odoo.tools import get_lang

get_lang(self.env).code


Awatar
Odrzuć