Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
1 Rispondi
5083 Visualizzazioni

Hello,


I am working with a piece of JS code which states:

    if (session.is_system) {

From what I can gather this only returns True when they have admin rights to settings.


I would like it to only run when they are an internal user. 


In Python it would be something like this:

    user.has_group('base.group_user'):

How would I replicate this in Odoo?


Thanks, 


  

Avatar
Abbandona
Risposta migliore

you can use something like


const session = require('web.session');
......
......
const isInternaluser = await session.user_has_group('base.group_user');
if ( isInternaluser) { ... }
Avatar
Abbandona
Autore

Hello Ravi, thank you for the code! Just to confirm, is "is_system" only have settings to admin access rights?

is_system is a superuser, it has all the access rights.

which odoo version are you using?

some business login has been changed related to superuser in V13

Autore

Hello Ravi, I am on Version 13 Enterprise Odoo.sh

For some reason, this condition is implemented in Javascript when it should be available for all users not just Admin.

Post correlati Risposte Visualizzazioni Attività
1
mag 25
8260
1
nov 24
4955
0
mag 24
2118
1
apr 24
2067
1
feb 24
2773