Zum Inhalt springen
Odoo Menü
  • Anmelden
  • Jetzt gratis testen
  • Apps
    Finanzen
    • Buchhaltung
    • Rechnungsstellung
    • Spesenabrechnung
    • Tabellenkalkulation (BI)
    • Dokumente
    • E-Signatur
    Vertrieb
    • CRM
    • Vertrieb
    • Kassensystem – Shop
    • Kassensystem – Restaurant
    • Abonnements
    • Vermietung
    Websites
    • Website-Builder
    • E-Commerce
    • Blog
    • Forum
    • Livechat
    • E-Learning
    Lieferkette
    • Lager
    • Fertigung
    • PLM
    • Einkauf
    • Wartung
    • Qualität
    Personalwesen
    • Mitarbeiter
    • Personalbeschaffung
    • Abwesenheiten
    • Mitarbeiterbeurteilung
    • Personalempfehlungen
    • Fuhrpark
    Marketing-
    • Social Marketing
    • E-Mail-Marketing
    • SMS-Marketing
    • Veranstaltungen
    • Marketing-Automatisierung
    • Umfragen
    Dienstleistungen
    • Projekte
    • Zeiterfassung
    • Außendienst
    • Kundendienst
    • Planung
    • Termine
    Produktivität
    • Dialog
    • Genehmigungen
    • IoT
    • VoIP
    • Wissensdatenbank
    • WhatsApp
    Apps von Drittanbietern Odoo Studio Odoo Cloud-Plattform
  • Branchen
    Einzelhandel
    • Buchladen
    • Kleidergeschäft
    • Möbelhaus
    • Lebensmittelgeschäft
    • Baumarkt
    • Spielwarengeschäft
    Essen & Gastgewerbe
    • Bar und Kneipe
    • Restaurant
    • Fast Food
    • Gästehaus
    • Getränkehändler
    • Hotel
    Immobilien
    • Immobilienagentur
    • Architekturbüro
    • Baugewerbe
    • Immobilienverwaltung
    • Gartenarbeit
    • Eigentümervereinigung
    Beratung
    • Buchhaltungsfirma
    • Odoo-Partner
    • Marketingagentur
    • Anwaltskanzlei
    • Talentakquise
    • Prüfung & Zertifizierung
    Fertigung
    • Textil
    • Metall
    • Möbel
    • Speisen
    • Brauerei
    • Firmengeschenke
    Gesundheit & Fitness
    • Sportklub
    • Brillengeschäft
    • Fitnessstudio
    • Therapeut
    • Apotheke
    • Friseursalon
    Handel
    • Handyman
    • IT-Hardware & -Support
    • Solarenergiesysteme
    • Schuster
    • Reinigungsdienstleistungen
    • HLK-Dienstleistungen
    Sonstiges
    • Gemeinnützige Organisation
    • Umweltschutzagentur
    • Plakatwandvermietung
    • Fotostudio
    • Fahrrad-Leasing
    • Software-Händler
    Alle Branchen ansehen
  • Community
    Lernen
    • Tutorials
    • Dokumentation
    • Zertifizierungen
    • Schulung
    • Blog
    • Podcast
    Bildung fördern
    • Bildungsprogramm
    • Scale-Up! Planspiel
    • Odoo besuchen
    Software anfragen
    • Herunterladen
    • Editionen vergleichen
    • Releases
    Zusammenarbeiten
    • Github
    • Forum
    • Veranstaltungen
    • Übersetzungen
    • Partner werden
    • Dienstleistungen für Partner
    • Buchhaltungsfirma registrieren
    Services anfragen
    • Partner finden
    • Buchhalter finden
    • Einen Experten treffen
    • Implementierungsservices
    • Kundenreferenzen
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Eine Demo erhalten
  • Preiskalkulation
  • Hilfe

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

  • CRM
  • e-Commerce
  • Buchhaltung
  • Lager
  • PoS
  • Projekte
  • MRP
All apps
Sie müssen registriert sein, um mit der Community zu interagieren.
Alle Beiträge Personen Abzeichen
Stichwörter (Alle anzeigen)
odoo accounting v14 pos v15
Über dieses Forum
Sie müssen registriert sein, um mit der Community zu interagieren.
Alle Beiträge Personen Abzeichen
Stichwörter (Alle anzeigen)
odoo accounting v14 pos v15
Über dieses Forum
Hilfe

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

Abonnieren

Erhalten Sie eine Benachrichtigung, wenn es eine Aktivität zu diesem Beitrag gibt

Diese Frage wurde gekennzeichnet
vendorDuplicatev11.0
6 Antworten
23884 Ansichten
Avatar
Community Question

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

1
Avatar
Verwerfen
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Beste Antwort

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
Verwerfen
Avatar
Ray Carnes
Beste Antwort

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
Verwerfen
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
Beste Antwort

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
Verwerfen
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
Beste Antwort

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
Verwerfen
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
Beste Antwort

Thanks for your help

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

Thanks

0
Avatar
Verwerfen
Avatar
Fenesha Holmes
Beste Antwort

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
Verwerfen
Diskutieren Sie gerne? Treten Sie bei, statt nur zu lesen!

Erstellen Sie heute ein Konto, um exklusive Funktionen zu nutzen und mit unserer tollen Community zu interagieren!

Registrieren
Verknüpfte Beiträge Antworten Ansichten Aktivität
How to disallow the import of a new product when an existing one has same internal reference
Duplicate
Avatar
0
Dez. 23
1595
ERROR: deadlock detected v11
v11.0
Avatar
3
Sept. 22
8147
round time for attendance (datetime.timedelta and float)
v11.0
Avatar
Avatar
1
Aug. 22
5912
connected user in database v11
v11.0
Avatar
Avatar
Avatar
3
März 21
2734
Adding JS function works with .include(), but not .extend()
v11.0
Avatar
Avatar
5
Feb. 20
13123
Community
  • Tutorials
  • Dokumentation
  • Forum
Open Source
  • Herunterladen
  • Github
  • Runbot
  • Übersetzungen
Dienstleistungen
  • Odoo.sh-Hosting
  • Support
  • Upgrade
  • Individuelle Entwicklungen
  • Bildung
  • Buchhalter finden
  • Partner finden
  • Partner werden
Über uns
  • Unsere Firma
  • Markenwerte
  • Kontakt
  • Karriere
  • Veranstaltungen
  • Podcast
  • Blog
  • Kunden
  • Rechtliches • Datenschutz
  • Sicherheit
الْعَرَبيّة 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 ist eine Suite von Open-Source-Betriebsanwendungen, die alle Bedürfnisse Ihres Unternehmens abdecken: CRM, E-Commerce, Buchhaltung, Lager, Kassensystem, Projektmanagement etc.

Das einzigartige Wertversprechen von Odoo ist, dass es gleichzeitig sehr einfach zu bedienen und voll integriert ist.

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