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.....
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.....
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.
thank you very much for your answer Emipro technologies
Creează-ți un cont astăzi pentru a beneficia de funcții exclusive și a interacționa cu minunata noastră comunitate!
Înscrie-te| Postări similare | Răspunsuri | Vizualizări | Activitate | |
|---|---|---|---|---|
|
1
apr. 15
|
15978 | |||
|
0
mar. 15
|
4841 | |||
|
Can someone explain me the xpath?
Rezolvat
|
2
oct. 15
|
8653 | ||
|
1
mar. 15
|
9995 | |||
|
3
mar. 15
|
6572 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.