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?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Comptabilitat
- Inventari
- PoS
- Project
- MRP
This question has been flagged
2
Respostes
6816
Vistes
Have a look at this app: https://apps.odoo.com/apps/modules/9.0/crm_duplicates/
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.'),
]
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Registrar-seRelated Posts | Respostes | Vistes | Activitat | |
---|---|---|---|---|
|
0
de nov. 20
|
3528 | ||
|
2
de març 15
|
8343 | ||
|
2
de març 21
|
4957 | ||
|
1
de març 15
|
4488 | ||
|
1
de maig 24
|
8430 |