如何在odoo8中使ean13独一无二

时间:2016-07-25 09:34:13

标签: postgresql odoo-8 ean-13

我需要在Odoov8中创建一个模块,它可以使product.template中的ean13字段唯一。

这是我的代码:

# -*- coding: utf-8 -*-
from openerp import models, fields, api, _
from openerp.exceptions import ValidationError

class uniq_barcode(models.Model):

    inherit = "product.template"

    ean13 = fields.Char()
    _sql_constraints = [
        ('ean13_uniq', 'unique(ean13)', _('code bare exisite deja !')),
    ]

但它没有用!我从昨天起就开始研究

2 个答案:

答案 0 :(得分:0)

此代码无法运行,因为您的模型未继承自&product;模板'。您声明inherit = "product.template",它应该是_inherit = "product.template",不要忘记_

答案 1 :(得分:0)

嘿伙计们,我不知道为什么_sql_constraints没有用,但我尝试了别的东西,它的工作!这是代码

class uni_barcode(models.Model):
_inherit = "product.product"


@api.one
@api.constrains('company_id', 'ean13', 'active')
def check_unique_company_and_ean13(self):
    if self.active and self.ean13 and self.company_id:
        filters = [('company_id', '=', self.company_id.id),
                   ('ean13', '=', self.ean13), ('active', '=', True)]
        prod_ids = self.search(filters)
        if len(prod_ids) > 1:
            raise Warning(
                _('Code bare existe deja !!'))

瞧,问题résolu MERCI