I want to retrieve the current user in a form:
var session = require('web.session');
user = session.uid
I get require is not defined.
Thank you
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
I want to retrieve the current user in a form:
var session = require('web.session');
user = session.uid
I get require is not defined.
Thank you
Hi!,
Try this code:
context = self._context
user = context.get('uid')
Hope it work for you!
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng kýBài viết liên quan | Trả lời | Lượt xem | Hoạt động | |
---|---|---|---|---|
|
1
thg 7 25
|
2456 | ||
|
2
thg 7 25
|
7911 | ||
|
2
thg 7 25
|
4327 | ||
|
2
thg 7 25
|
4067 | ||
|
2
thg 6 25
|
2664 |
Thank you