コンテンツへスキップ
メニュー
この質問にフラグが付けられました
3 返信
46896 ビュー

When I create a custom model in the web GUI, how can I mark a field as "unique", so that the database will never create a second row with the same field value?

アバター
破棄
最善の回答

You can only do this when you create your field via Python.

See https://accounts.openerp.com/forum/Help-1/question/16386

_sql_constraints = [
                     ('field_unique', 
                      'unique(field)',
                      'Choose another value - it has to be unique!')
]

Note that if there are existing records for the model in the database, then any field values have to be unique, or this will fail and OpenERP will do nothing to enforce the constraint for new records.

アバター
破棄
著作者

Thanks, so I will have to write a Python module for my table. Maybe it would be a nice enhancement if there would be a "unique" flag in the GUI as well. I assume, that unique fields are needed often (serial numbers, order numbers, etc.).

最善の回答

Hi,

add a sql constraint to your model :

_sql_constraints = [
        ('uniq_name', 'unique(stuff_name)', "A stuff already exists with this name . Stuff's name must be unique!"),
    ]

Best regards

アバター
破棄
著作者

Thanks, too!

最善の回答
_sql_constraints = [
        ('uniq_name', 'unique(your_field_name)', "You Entered data is already exists with this name. Please give data must be unique!"),
    ]
アバター
破棄
関連投稿 返信 ビュー 活動
1
3月 15
7151
2
3月 15
6453
2
3月 22
2699
0
3月 24
3251
3
6月 17
7149