Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
5381 Lượt xem

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?

Ảnh đại diện
Huỷ bỏ
Tác giả

thanks , i have add company_ids and there another error :

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

Câu trả lời hay nhất

Try to add the following code in user vals:

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


Ảnh đại diện
Huỷ bỏ

Thanks for the answer. Very helpful

Bài viết liên quan Trả lời Lượt xem Hoạt động
3
thg 2 24
10751
1
thg 3 15
7079
3
thg 12 24
6585
1
thg 8 24
1521
4
thg 6 23
3039