Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
2 Ответы
4587 Представления

The old API defined a unique field as follows:

_sql_constraints = [
('cne_unique', 'unique(cne)', 'cne already exists!')
]

The new API deprecates this, and recommends to use @api.constrains, but how can I code to check for uniqueness in an efficient way?














Аватар
Отменить
Лучший ответ

Hi

this is _constraints which is deprecated (python constraint), not _sql_constraints, see :


https://www.odoo.com/documentation/8.0/reference/orm.html

Аватар
Отменить
Автор Лучший ответ

@Cyril: please read my question. I know it is deprecated, I need to know how to do this in v8. 

Аватар
Отменить

please read my answer and verify in link I gave, _constraints and and _sql_constraints are two different things, you talk about _sql_constraints and this is not deprecated, see after => copy/paste v8 doc (link I gave) : _constraints list of (constraint_function, message, fields) defining Python constraints. The fields list is indicative Deprecated since version 8.0: use constrains() _sql_constraints list of (name, sql_definition, message) triples defining SQL constraints to execute when generating the backing table

Автор

Cyril, I sincerely apologize. You were completely right. _sql_constraints is not deprecated. I just don't know how to read. Thanks.

Now you have your answer ^^, bye

Related Posts Ответы Просмотры Активность
1
нояб. 22
3450
0
июн. 21
6013
0
мар. 21
2824
2
янв. 20
21813
2
мая 18
4119