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

I am working on a new module. How do  I get  information from openerp-server.conf in my python codes? for example  smtp_server info. Thanks in advance

Awatar
Odrzuć
Najlepsza odpowiedź

In Python you get openerp-sever.conf file information using the below code:-

from openerp.tools.config

import config

class sample(osv.osv):

_name = "sample"

dbUser = config.get("db_user")

https://www.odoo.com/forum/help-1/question/how-to-get-value-from-conf-file-47217#answer-49259

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
4
lip 25
1341
1
lip 25
657
2
lip 25
673
1
lip 25
1843
2
lip 25
232