跳至內容
選單
此問題已被標幟
1 回覆
3398 瀏覽次數

Hi i am looking for the settings on automated action fields and the python code to avoid my staff from creating duplicate contacts in Odoo V14. I did similar automated action on product internal reference which works perfectly but cannot manage to do so for the contacts.

頭像
捨棄

If you need any help regarding coding you can contact with us: softwarebox18@gmail.com

最佳答案

Hi,

You can avoid creating a duplicate contact by generating a error message by checking the unique field.

For example:

class ResPartner(models.Model):
_inherit = 'res.partner'

 
    @api.onchange('name')
def _check_name(self):
partner = self.search([])
name = partner.mapped('name')
if self.name:
if self.name in name:
raise ValidationError('Duplicate Customer Name.')
 

Here, it will generate a validation error if the creating customer name already exists in contacts. And it will prevent creating customers with the same name.

Regards

頭像
捨棄
作者

Hello,
Thank you for replying so promptly, I have not done any coding on the forms before, I was able to locate res.partner in models but within the model there are a lot of options to go about. any chance you can guide me which field I should apply this code too.

相關帖文 回覆 瀏覽次數 活動
0
11月 23
1115
1
9月 23
2293
1
8月 23
1555
2
9月 20
2567
0
10月 23
8239