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?
;)
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
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?
;)
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
Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!
AanmeldenGerelateerde posts | Antwoorden | Weergaven | Activiteit | |
---|---|---|---|---|
|
1
jul. 23
|
2766 | ||
|
2
aug. 15
|
10361 | ||
|
0
mei 15
|
4014 | ||
|
0
apr. 15
|
4493 | ||
|
0
sep. 23
|
5152 |
from odoo.addons.[MODULE].[FILE] import [var1], [var2]