Skip to Content
Menu
This question has been flagged
1 Odpoveď
6622 Zobrazenia

hi all

i need to create unique python constraint (by convert this sql constraint) to be applied for all records
_sql_constraints = [
        ('unique_mobile', 'unique (mobile)', 'Mobile number already exists!')
    ]
Thanks

Avatar
Zrušiť
Autor Best Answer

i found a solution

# Mobile Field to be unique
@api.constrains('mobile')
def _check_mobile_unique(self):
mobile_counts = self.search_count([('mobile', '=', self.mobile), ('id', '!=', self.id)])
print(mobile_counts)
if mobile_counts > 0:
raise ValidationError("Mobile number already exists!")
Avatar
Zrušiť
Related Posts Replies Zobrazenia Aktivita
5
okt 24
32646
1
júl 23
7299
2
júl 22
11489
2
okt 21
3287
0
aug 21
2024