لقد تم الإبلاغ عن هذا السؤال
The company model (res.company) has a many2one to the company currency, so in v8 and later you can use:
self.env.ref('base.main_company').currency_id
how to get from the ODOO screen itself
Hi,
You can do as following:
def _get_currency(self, cr, uid, context=None):
user_obj = self.pool.get('res.users')
currency_obj = self.pool.get('res.currency')
user = user_obj.browse(cr, uid, uid, context=context)
if user.company_id:
return user.company_id.currency_id.id
else:
return currency_obj.search(cr, uid, [('rate', '=', 1.0)])[0]
_defaults = {
'currency': _get_currency,
}
self.env.company.currency_id
هل أعجبك النقاش؟ لا تكن مستمعاً فقط. شاركنا!
أنشئ حساباً اليوم لتستمتع بالخصائص الحصرية، وتفاعل مع مجتمعنا الرائع!
تسجيل| المنشورات ذات الصلة | الردود | أدوات العرض | النشاط | |
|---|---|---|---|---|
|
|
1
أبريل 24
|
3826 | ||
|
|
2
يناير 24
|
3758 | ||
|
Error message
تم الحل
|
|
2
نوفمبر 23
|
5556 | |
|
change in currency configuration
تم الحل
|
|
1
مارس 24
|
4018 | |
|
Currency automatic conversion
تم الحل
|
|
1
مارس 23
|
4102 |