account.asset.group :: Asset Group

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

  • company_id [many2one: res.company]: Company

  • count_linked_assets [readonlyinteger]: Count Linked Assets

  • count_linked_loans [readonlyinteger]: Count Linked Loans

  • create_date [readonlydatetime]: Created on

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

  • display_name [readonlychar]: Display Name

  • id [readonlyinteger]: ID

  • linked_asset_ids [one2many: account.asset]: Related Assets

  • linked_loan_ids [one2many: account.loan]: Related Loans

  • name [char]: Name

  • write_date [readonlydatetime]: Last Updated on

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