diff --git a/doc/reference/orm.rst b/doc/reference/orm.rst index 4cdbf78f65c5c..0263058a26e15 100644 --- a/doc/reference/orm.rst +++ b/doc/reference/orm.rst @@ -697,6 +697,7 @@ Model Reference :type: bool + .. attribute:: _check_company_auto On write and create, call ``_check_company`` to ensure companies @@ -704,6 +705,34 @@ Model Reference as attribute. (default: ``False``) + .. attribute:: _parent_name + + Alternative field to use as parent, used by indexed storage of the tree structure of records + (default: ``'parent_id'``) + + :type: str + + .. attribute:: _date_name + + Alternative field to use for default calendar view + (default: ``'date'``) + + :type: str + + .. attribute:: _fold_name + + Alternative field to determine folded groups in kanban views + (default: ``'fold'``) + + :type: str + + .. attribute:: _translate + + False disables translations export for this model + (default: ``True``) + + :type: bool + .. rubric:: CRUD .. automethod:: create