Skip to Content
मेन्यू
This question has been flagged
1 Reply
2107 Views

How can I configure Odoo SaaS to not create a duplicate contact based on a criteria (such as email)?

Avatar
Discard
Best Answer

You can override create method like:

class Contacts(models.Model):
_inherit = 'res.partner'

@api.model
def create(self, vals_list):
email = vals_list.get('email', None)
if email:
partner = self.env['res.partner'].search([('email', '=', email)], limit=1)
if partner:
raise ValidationError('User already exists.')
return super(Contacts, self).create(vals_list)


Avatar
Discard
Author

Hello Arian,

Thank you for your response. I must mention that I am using Odoo SaaS. Do you have a solution for this version?

Related Posts Replies Views Activity
0
अप्रैल 22
2363
2
दिस॰ 24
1210
1
मार्च 24
1347
2
अग॰ 24
3600
2
जुल॰ 25
2604