Skip to Content
Menu
This question has been flagged
2 Replies
7663 Zobrazenia

How do I get to use a constant defined in some other module?


Suppose I want to use XPTO defined in hr_timesheet module.

The value is a constant. It's not within a class


How do I refer to it in my own module?


;)

Avatar
Zrušiť
Autor

from odoo.addons.[MODULE].[FILE] import [var1], [var2]

Best Answer

Hi Rui Franco,

Try below code in a python file of your module:

 from odoo.addons.hr_timesheet.models.[file name] import XPTO

 This will import XPTO variable of hr_timesheet module into your file

Hope this will help you!

Thanks

Avatar
Zrušiť
Related Posts Replies Zobrazenia Aktivita
1
júl 23
2727
2
aug 15
10299
0
máj 15
3989
0
apr 15
4454
0
sep 23
5124