Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
1 Відповісти
5880 Переглядів

i have define a http request like this:

@http.route('/user/register/',type='http',auth='none')

and call   method like this:

issuc = request.env['res.users'].sudo().do_register(uname,upwd)
and do_register method like this:

groups_id = request.env.ref('base.group_user')
values = {
'active': True,
"login": uname,
"password": pwd,
"name": uname,
'groups_id': groups_id,
'company_id': 1,
'partner_id': 1
}
rec = self.sudo().create(values)
Next is the error:

raise ValidationError(_('The chosen company is not in the allowed companies for this user'))

So what is the correct way to create?

Аватар
Відмінити
Автор

thanks , i have add company_ids and there another error :

raise exceptions.RedirectWarning(msg, action.id, _('Go to the configuration panel'))

Найкраща відповідь

Try to add the following code in user vals:

'company_ids':  [(6,  0,  [1])]  #  allowed  companies


Аватар
Відмінити

Thanks for the answer. Very helpful

Related Posts Відповіді Переглядів Дія
3
лют. 24
11223
1
бер. 15
7582
3
груд. 24
7458
1
серп. 24
2091
4
черв. 23
3352