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

Hi,

I need to stop my customers to create only 2 users in their database how can i restrict this in odoo.

Any one Could you help me..

Thanks in Advance.....

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Hi,

you can put constraints on the res.users model as like below.

_constraints = [  (_check_no, 'You cannot create more then 2 users .... ! ! ! !', []) ]

def _check_no(self, cr, uid, ids, context={}):

    user_ids = self.search(cr, uid, [] )

    if len(user_ids) > 2:

        return False

    return True

I hope it will help to achieve your goal.

 

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

thank you very much for your answer Emipro technologies

Bài viết liên quan Trả lời Lượt xem Hoạt động
1
thg 4 15
14218
0
thg 3 15
3183
2
thg 10 15
6685
1
thg 3 15
7602
3
thg 3 15
5031