Odooers论坛

欢迎!

该社区面向专业人士和我们产品和服务的爱好者。
分享和讨论最好的内容和新的营销理念,建立您的专业形象,一起成为更好的营销人员。


0

My SQL constraints don't work, why ?

形象
odoo
形象
丢弃
4 答案
0
形象
odoo
最佳答案

# class miadi_poidsConditionnement(models.Model):
                _sql_constraints    =    [   
                                ('uniq_id',   
                                    'UNIQUE (produit_id, conditionnement_id)',

                                    'A product already exists with this packaging !')]

Try this

形象
丢弃
0
形象
odoo
最佳答案

check if there is any duplication before applying the constrains , if any one found then i won't take any effect , remove the duplication first then install/upgrade the module

形象
丢弃
0
形象
odoo
最佳答案

SQL constraints works only for New Records, so you may need to test it in new Database.

形象
丢弃
0
形象
odoo
最佳答案

Hi everybody,

I fix the problem unistalling the module and install it again

形象
丢弃