Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
4 Antwoorden
23154 Weergaven

I need to get current user in function fetch_from_channel in chat_manager.js in addon mail

I tried  to use self.session.uid. But its not working in this file.

And i need to get this without using python function

Avatar
Annuleer

Check the context, dataset,

Beste antwoord

var session = require('web.session');

user = session.uid


Important: js is asyncronous. Make sure, all the data about the session is uploaded to the time when you are trying to retrieve the data. E.g. console.log(session). What is kept there, when you try to get the active user?

Avatar
Annuleer
Auteur

Thanks, it works fine now

thanks, best.
for addition : in ver 17 it can work this way :

import { session } from "@web/session";

console.log(session.uid)

Beste antwoord

In Odoo 12 you can get the current user ID like this

var session = require('web.session');

...
var user = session.uid
console.log('user >>>> ', user)
Avatar
Annuleer
Beste antwoord

For version 17 OWL we can go this way :

import { session } from "@web/session";

console.log(session.uid)

Avatar
Annuleer
Beste antwoord


var session = require('web.session');

user = session.user_id


Avatar
Annuleer

I got result while putting session.user_id in my code.

This works fine for me. Thank you MITUL SHAH

Gerelateerde posts Antwoorden Weergaven Activiteit
1
mrt. 17
7324
1
sep. 16
2395
1
jun. 23
1926
1
mei 23
1869
1
okt. 22
4019