Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

How can I prevent users from entering duplicate Vendors? Based on NAME only

Subscriure's

Get notified when there's activity on this post

This question has been flagged
vendorDuplicatev11.0
6 Respostes
23930 Vistes
Avatar
Community Question

Accounting users are not searching first for a Vendor when the enter a Bill.

1
Avatar
Descartar
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Best Answer

Hi,

You can override the create method or add a constrains for the model.

If you are overriding the create method you can check whether there is a vendor already exits in the db with the same name.

By giving constrains for the model res.partner

@api.constrains('name')
def _check_name(self):
partner_rec = self.env['res.partner'].search(
[('name', '=', self.name), ('supplier', '=', True), ('id', '!=', self.id)])
if partner_rec:
raise ValueError(_('Exists ! Already a vendor exists in this name'))


Also, you can check the usage of the SQL constrains,

_sql_constraints = [
('name', 'unique (name)', 'The name already Exists!'),
]


Thanks


4
Avatar
Descartar
Avatar
Ray Carnes
Best Answer

UPDATE:

For v14, raise UserError instead of Warning. Code updated but screenshot still shows v14 method.


For v13, this works better, and also checks the Reference field (where some people put the legal name or the account number)

for record in records:
  if record.ref:
    exists = env['res.partner'].search([('name','=',record.name),('is_company','=',True),('id','!=',record.id)])
  else:
    exists = env['res.partner'].search([('ref','=',record.ref),('name','=',record.name),('is_company','=',True),('id','!=',record.id)])
  if exists:
    raise UserError('"' + record.name + '" is already in Odoo!')


You can setup an Automated Action that searches for records based on any combination of name, email, phone, etc.

This example is just for name:


This is the code snippet:

exists = env['res.partner'].search([('name','=',record.name),('supplier','=',True),('id','!=',record.id)])
if exists:
raise UserError('Vendor "' + record.name + '" is already in Odoo!')

This is the message this action will show users if they enter a Vendor already in Odoo:


2
Avatar
Descartar
Ermin Trevisan

I did not think of using automated action for this, that's cool!

Thomas Guénard

I got this error while implementing this automated action (using V8)

ValueError: "name 'record_name' is not defined" while evaluating.

Ray Carnes

Sorry, I don't work with Odoo 8 any longer.

Tushar Kawsar

Hi Ray, I tried this on Odoo 14, and although it prevents me from creating a duplicate, it does not show a well-formated Warning, rather shows an error that something is wrong with the automated action itself.. Any idea what is going on? Thanks!

Screenshots: https://imgur.com/a/F75fs9I

Ray Carnes (ray)

See https://www.odoo.com/forum/help-1/question/raise-warning-now-showing-a-non-user-friendly-traceback-dialog-at-v14-177231

Cliff Kujala

I have this method working great for restricting my users to not enter duplicate email addresses on contacts/partners.

I was wondering if anyone has had any luck using this method for mobile phone numbers?

The code below works great for email:
``exists = env['res.partner'].search([('email','=',record.email),('id','!=',record.id)])
if exists:
raise UserError('The email address "' + record.email + '" is already in Odoo! Email must be unique.')``

The code below throws errors when trying to use it for mobile phone:
``exists = env['res.partner'].search([('mobile','=',record.email),("mobile", "!=", False),('id','!=',record.id)])
if exists:
raise UserError('The mobile phone number "' + record.mobile + '" is already used. Mobile phone number must be unique!')``

Cliff Kujala

Ignore the `` wrapping the code in my above comment. I thought the forum comments allowed markdown.

Cliff Kujala

Oh boy. Left one reference to email instead of mobile in my code that is why it was throwing errors. Disregard the error question.

However, I am still curious if anyone knows how this rule would be affected by Phone Validation https://github.com/odoo/odoo/tree/17.0/addons/phone_validation

When Odoo runs validation on phone numbers, does it strip the database value down to the raw integer, or does it actually store the value as formatted with the the +country code, dashes and parentheses? I will do some testing of this.

Cliff Kujala

I have this method working great for keeping our emails and mobile phone numbers unique. It would be great if on the popup there could be a link to the contact card which is blocking the action.

Cliff Kujala

This method does not check for case-insensitive matches.

So it is possible to have two contacts with these email addresses which should not be allowed:
email@email.com
Email@Email.com

How can I modify the code so that it will also block matches but ignore case?

Ray Carnes (ray)

use "record.email.upper()" on the right hand side of the search to force all emails to uppercase during comparison.

Avatar
Cliff Kujala
Best Answer

For V16

I have updated Ray Carnes helpful automation (thanks Ray) so that it also checks for case-insensitive matches by email address.  I also modified the UserError popup window so that it will display the Name and ID of the contact which is blocking the action.    It would be awesome if the Odoo Popups could render HTML, because then I could insert a link directly to the offending contact card.

Sorry for putting the code here as an image not text.  Whenever I put the code in, some of it is deleted by the forum.



1
Avatar
Descartar
Chris TRINGHAM

Thanks Cliff. I wasted a lot of time checking this in Odoo 15 but when I tried it in Odoo 16 it does work.

Small improvement: I'd add the email as a filter so it only checks when there is an email address specified.

# Search for existing contacts with the same email address, ignoring case
exists = env['res.partner'].search([
('id', '!=' , record.id),
('email', 'ilike' , record.email),
('active', '!=', False)])
if exists:
#Assuming 'exists' contains at least one record, get the first one
conflicting_contact = exists[0]
# Prepare a helpful message that includes the name and ID of the conflicting contact
message = (f'The email address "{record.email}" is already used by '
f'"{conflicting_contact.name}" (ID: {conflicting_contact.id}). '
'Please search for this contact in the Contacts module. '
'Email must be unique!')
raise UserError(message)

Cliff Kujala

Hello Chris,

I have the automation set so that it checks if email is set, but I'll be honest, Odoo V16 seems to ignore this. See attached my full automation screenshot in my edited answer above.

Chris TRINGHAM

Seems to work for me. But alternatively you could add if email: to the Python code.

Avatar
Jacobus Erasmus
Best Answer

It depends on your specific situation but in most cases, my suggestion is to simply set up your users so that they cannot add vendors and only a certain set of users (Accountant or Purchasing) manager can add a vendor. In most cases to create a new vendor is an involved process with contracts etc that need to be negotiated so a normal salesperson or even a purchasing clerk should not have access to add vendors. 


1
Avatar
Descartar
Ray Carnes

Agreed - you make a great point. This is certainly something I would recommend.

Ermin Trevisan

Now we have 3 typical answers, I know it is oversimplified, but somehow I see a typical american, indian and european (even when Jacobus shows the south-african flag) answer here :-)

Ray Carnes

I'm Australian, I just happen to live in the USA!

Avatar
Arnaud Bourgeois
Best Answer

Thanks for your help

Any idea for python code to prevent dupplicate vendors payment with same reference?

Thanks

0
Avatar
Descartar
Avatar
Fenesha Holmes
Best Answer

I kept getting a error message instead of the user warning when I entered this code into Odoo 14. I solved the issue by editing the code. I had to swap out 'supplier' with 'active. See below.

exists = env['res.partner'].search([('name','=',record.name),('active','=',True),('id','!=',record.id)])
if exists:
raise UserError('Vendor "'+record.name+'" is already in Odoo!')

0
Avatar
Descartar
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrar-se
Related Posts Respostes Vistes Activitat
How to disallow the import of a new product when an existing one has same internal reference
Duplicate
Avatar
0
de des. 23
1604
ERROR: deadlock detected v11
v11.0
Avatar
3
de set. 22
8163
round time for attendance (datetime.timedelta and float)
v11.0
Avatar
Avatar
1
d’ag. 22
5919
connected user in database v11
v11.0
Avatar
Avatar
Avatar
3
de març 21
2750
Adding JS function works with .include(), but not .extend()
v11.0
Avatar
Avatar
5
de febr. 20
13152
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now