12 lines
367 B
Python
12 lines
367 B
Python
# Copyright (C) 2018 - TODAY, Open Source Integrators
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import models
|
|
|
|
|
|
class ProductProduct(models.Model):
|
|
_inherit = 'product.product'
|
|
|
|
_sql_constraints = [
|
|
('default_code_uniq', 'unique(default_code)',
|
|
'Internal Reference must be unique across the database!'), ]
|