account.online.account :: representation of an online bank account

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

  • account_data [readonlychar]: Account Data

  • account_number [char]: Account Number

  • account_online_link_id [readonlymany2one: account.online.link]: Account Online Link

  • balance [readonlyfloat]: Balance

  • company_id [readonlymany2one: res.company]: Company

  • create_date [readonlydatetime]: Created on

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

  • currency_id [many2one: res.currency]: Currency

  • display_name [readonlychar]: Display Name

  • fetching_status [selection]: Fetching Status

  • id [readonlyinteger]: ID

  • inverse_balance_sign [boolean]: Inverse Balance Sign

  • inverse_transaction_sign [boolean]: Inverse Transaction Sign

  • journal_ids [one2many: account.journal]: Journal

  • last_sync [date]: Last synchronization

  • name [char]: Account Name

  • online_identifier [readonlychar]: Online Identifier

  • write_date [readonlydatetime]: Last Updated on

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