account.payment.method.line :: Payment Methods

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

  • available_payment_method_ids [readonlymany2many: account.payment.method]: Available Payment Method

  • code [readonlychar]: Code

  • company_id [readonlymany2one: res.company]: Company

  • create_date [readonlydatetime]: Created on

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

  • default_account_id [readonlymany2one: account.account]: Default Account

  • display_name [readonlychar]: Display Name

  • id [readonlyinteger]: ID

  • journal_id [many2one: account.journal]: Journal

  • name [char]: Name

  • payment_account_id [many2one: account.account]: Payment Account

  • payment_method_id [requiredmany2one: account.payment.method]: Payment Method

  • payment_provider_id [many2one: payment.provider]: Payment Provider

  • payment_provider_state [readonlyselection]: State

  • payment_type [readonlyselection]: Payment Type

  • sequence [integer]: Sequence

  • write_date [readonlydatetime]: Last Updated on

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