diff --git a/odoo/fields.py b/odoo/fields.py index 7a71199dc4ea8b4bd654f7ff73176482242614ca..5ce5357f96d784a13a13c884c2953ff8fea97ca7 100644 --- a/odoo/fields.py +++ b/odoo/fields.py @@ -192,6 +192,10 @@ class Field(MetaField('DummyField', (object,), {})): to bypass access rights (by default ``True`` for stored fields, ``False`` for non stored fields) + :param bool recursive: whether the field has recursive dependencies (the field + ``X`` has a dependency like ``parent_id.X``); declaring a field recursive + must be explicit to guarantee that recomputation is correct + :param str inverse: name of a method that inverses the field (optional) :param str search: name of a method that implement search on the field (optional) @@ -245,7 +249,7 @@ class Field(MetaField('DummyField', (object,), {})): string = None # field label help = None # field tooltip - invisible = False # whether the field is invisible + invisible = False # whether the field is invisible readonly = False # whether the field is readonly required = False # whether the field is required states = None # set readonly and required depending on state