跳至內容
選單
此問題已被標幟
2 回覆
6067 瀏覽次數

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.

頭像
捨棄
最佳答案

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.

頭像
捨棄
作者

Thank you so much, It worked.

最佳答案

use a domain for your many2one field, like

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

頭像
捨棄
作者

Thank you so much, It worked.