ir.embedded.actions :: Embedded Actions

Main super-class for regular database-persisted Odoo models. Odoo models are created by inheriting from this class:: class user(Model): ... The system will later instantiate the class once per database (on which the class' module is installed).

Fields

  • action_id [many2one: ir.actions.actions]: Action

  • context [char]: Context

  • create_date [readonlydatetime]: Created on

  • create_uid [readonlymany2one: res.users]: Created by

  • default_view_mode [char]: Default View

  • display_name [readonlychar]: Display Name

  • domain [char]: Domain

  • filter_ids [one2many: ir.filters]: Filter

  • groups_ids [many2many: res.groups]: Groups

  • id [readonlyinteger]: ID

  • is_deletable [readonlyboolean]: Is Deletable

  • is_visible [readonlyboolean]: Embedded visibility

  • name [char]: Name

  • parent_action_id [requiredmany2one: ir.actions.act_window]: Parent Action

  • parent_res_id [integer]: Active Parent Id

  • parent_res_model [requiredchar]: Active Parent Model

  • python_method [char]: Python Method

  • sequence [integer]: Sequence

  • user_id [many2one: res.users]: User

  • write_date [readonlydatetime]: Last Updated on

  • write_uid [readonlymany2one: res.users]: Last Updated by