Skip ke Konten
Odoo Menu
  • Login
  • Uji coba gratis
  • Aplikasi
    Keuangan
    • Akuntansi
    • Faktur
    • Pengeluaran
    • Spreadsheet (BI)
    • Dokumen
    • Tanda Tangan
    Sales
    • CRM
    • Sales
    • POS Toko
    • POS Restoran
    • Langganan
    • Rental
    Website
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Rantai Pasokan
    • Inventaris
    • Manufaktur
    • PLM
    • Purchase
    • Maintenance
    • Kualitas
    Sumber Daya Manusia
    • Karyawan
    • Rekrutmen
    • Cuti
    • Appraisal
    • Referensi
    • Armada
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Acara
    • Otomatisasi Marketing
    • Survei
    Layanan
    • Project
    • Timesheet
    • Layanan Lapangan
    • Meja Bantuan
    • Planning
    • Appointment
    Produktivitas
    • Discuss
    • Approval
    • IoT
    • VoIP
    • Pengetahuan
    • WhatsApp
    Aplikasi pihak ketiga Odoo Studio Platform Odoo Cloud
  • Industri-Industri
    Retail
    • Toko Buku
    • Toko Baju
    • Toko Furnitur
    • Toko Kelontong
    • Toko Hardware
    • Toko Mainan
    Makanan & Hospitality
    • Bar dan Pub
    • Restoran
    • Fast Food
    • Rumah Tamu
    • Distributor Minuman
    • Hotel
    Real Estate
    • Agensi Real Estate
    • Firma Arsitektur
    • Konstruksi
    • Estate Management
    • Perkebunan
    • Asosiasi Pemilik Properti
    Konsultansi
    • Firma Akuntansi
    • Mitra Odoo
    • Agensi Marketing
    • Firma huku
    • Talent Acquisition
    • Audit & Sertifikasi
    Manufaktur
    • Tekstil
    • Logam
    • Perabotan
    • Makanan
    • Brewery
    • Corporate Gift
    Kesehatan & Fitness
    • Sports Club
    • Toko Kacamata
    • Fitness Center
    • Wellness Practitioners
    • Farmasi
    • Salon Rambut
    Perdagangan
    • Handyman
    • IT Hardware & Support
    • Sistem-Sistem Energi Surya
    • Pembuat Sepatu
    • Cleaning Service
    • Layanan HVAC
    Lainnya
    • Organisasi Nirlaba
    • Agen Lingkungan
    • Rental Billboard
    • Fotografi
    • Penyewaan Sepeda
    • Reseller Software
    Browse semua Industri
  • Komunitas
    Belajar
    • Tutorial-tutorial
    • Dokumentasi
    • Sertifikasi
    • Pelatihan
    • Blog
    • Podcast
    Empower Education
    • Program Edukasi
    • Game Bisnis 'Scale Up!'
    • Kunjungi Odoo
    Dapatkan Softwarenya
    • Download
    • Bandingkan Edisi
    • Daftar Rilis
    Kolaborasi
    • Github
    • Forum
    • Acara
    • Terjemahan
    • Menjadi Partner
    • Layanan untuk Partner
    • Daftarkan perusahaan Akuntansi Anda.
    Dapatkan Layanan
    • Temukan Mitra
    • Temukan Akuntan
    • Temui penasihat
    • Layanan Implementasi
    • Referensi Pelanggan
    • Bantuan
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dapatkan demo
  • Harga
  • Bantuan

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

  • CRM
  • e-Commerce
  • Akuntansi
  • Inventaris
  • PoS
  • Project
  • MRP
All apps
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Help

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

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
vendorDuplicatev11.0
6 Replies
23908 Tampilan
Avatar
Community Question

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

1
Avatar
Buang
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Jawaban Terbai

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
Buang
Avatar
Ray Carnes
Jawaban Terbai

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
Buang
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
Jawaban Terbai

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
Buang
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
Jawaban Terbai

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
Buang
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
Jawaban Terbai

Thanks for your help

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

Thanks

0
Avatar
Buang
Avatar
Fenesha Holmes
Jawaban Terbai

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
Buang
Menikmati diskusi? Jangan hanya membaca, ikuti!

Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!

Daftar
Post Terkait Replies Tampilan Aktivitas
How to disallow the import of a new product when an existing one has same internal reference
Duplicate
Avatar
0
Des 23
1597
ERROR: deadlock detected v11
v11.0
Avatar
3
Sep 22
8155
round time for attendance (datetime.timedelta and float)
v11.0
Avatar
Avatar
1
Agu 22
5913
connected user in database v11
v11.0
Avatar
Avatar
Avatar
3
Mar 21
2738
Adding JS function works with .include(), but not .extend()
v11.0
Avatar
Avatar
5
Feb 20
13128
Komunitas
  • Tutorial-tutorial
  • Dokumentasi
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Terjemahan
Layanan
  • Odoo.sh Hosting
  • Bantuan
  • Peningkatan
  • Custom Development
  • Pendidikan
  • Temukan Akuntan
  • Temukan Mitra
  • Menjadi Partner
Tentang Kami
  • Perusahaan kami
  • Aset Merek
  • Hubungi kami
  • Tugas
  • Acara
  • Podcast
  • Blog
  • Pelanggan
  • Hukum • Privasi
  • Keamanan
الْعَرَبيّة 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 adalah rangkaian aplikasi bisnis open source yang mencakup semua kebutuhan perusahaan Anda: CRM, eCommerce, akuntansi, inventaris, point of sale, manajemen project, dan seterusnya.

Mudah digunakan dan terintegrasi penuh pada saat yang sama adalah value proposition unik Odoo.

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