HI, HOw can i get the session Id of the website(new module for V8) user /or the name of the current user from the javascript file
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- 会計
- 在庫
- PoS
- Project
- MRP
この質問にフラグが付けられました
2
返信
9786
ビュー
Hello Hachem,
It is possible to get session id, username and other session information with JS with the following code.
openerp.website.session.rpc("/web/session/get_session_info", {}).then(function(result) {console.log(result)});
Can I use this session info, to auto populate credentials to another url, where I wish to redirect user?
関連投稿 | 返信 | ビュー | 活動 | |
---|---|---|---|---|
|
0
7月 25
|
53 | ||
|
1
7月 25
|
4831 | ||
|
0
7月 25
|
369 | ||
|
0
6月 25
|
540 | ||
|
1
6月 25
|
735 |
Same problem here.