Siirry sisältöön
Menu
Sinun on rekisteröidyttävä, jotta voit olla vuorovaikutuksessa yhteisön kanssa.
Tämä kysymys on merkitty
2 Vastaukset
6079 Näkymät

Hi,
Can anyone tell me how we categorize Users as "Internal users" .... which field denotes the use is internal user?
From front end I can see only filter of Internal Users, but field name is not visible from backend as well as from front end.

Avatar
Hylkää
Paras vastaus

hello

into users table  there is boolean field named "Share User (technical_name - share )". if this field is not checked, that means the user is Internal User.

Avatar
Hylkää
Tekijä

Thank you so much, It worked.

Paras vastaus

use a domain for your many2one field, like

int_users = fields.Many2one('res.users', string="users", domain=[('share', '=', False)])

Avatar
Hylkää
Tekijä

Thank you so much, It worked.