コンテンツへスキップ
メニュー
この質問にフラグが付けられました
2 返信
7768 ビュー

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?


;)

アバター
破棄
著作者

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

最善の回答

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

アバター
破棄
関連投稿 返信 ビュー 活動
1
7月 23
2841
2
8月 15
10441
0
5月 15
4087
0
4月 15
4565
0
9月 23
5210