From 0376743c65dc8fc29ac2f1353b02901423f4d18a Mon Sep 17 00:00:00 2001 From: Raphael Collet <rco@odoo.com> Date: Tue, 8 Nov 2022 09:16:12 +0000 Subject: [PATCH] [FIX] core: missing documentation about field.recursive closes odoo/odoo#105279 Signed-off-by: Raphael Collet <rco@odoo.com> --- odoo/fields.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/odoo/fields.py b/odoo/fields.py index 7a71199dc4ea..5ce5357f96d7 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 -- GitLab