Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
2 Antwoorden
6830 Weergaven

In Odoo Standard, it is possible to :

Use the same email adress for different companies
Use the same email adress for 2 contacts within the same company

Is there a specific reason why no check is made on email? Is anyone finding this problematic or at least not following their requirements and has found a module that does a check on a unique email adress?
 

Avatar
Annuleer
Beste antwoord

Have a look at this app: https://apps.odoo.com/apps/modules/9.0/crm_duplicates/

Avatar
Annuleer
Beste antwoord

It depends on customer requirement.  If email needs to be unique, you could add _sql_constraints

class res_partner(orm.Model):
    _inherit = 'res.partner'   

    _sql_constraints = [
        ('email_res_uniq', 'unique (email)', 'Partner e-Mail must be unique.'), 
    ]

Avatar
Annuleer
Gerelateerde posts Antwoorden Weergaven Activiteit
0
nov. 20
3536
2
mrt. 15
8352
2
mrt. 21
4974
1
mrt. 15
4499
1
mei 24
8453