res.currency :: Currency

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

  • active [boolean]: Active

  • create_date [readonlydatetime]: Created on

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

  • currency_subunit_label [char]: Currency Subunit

  • currency_unit_label [char]: Currency Unit

  • date [readonlydate]: Date

  • decimal_places [readonlyinteger]: Decimal Places

  • display_name [readonlychar]: Display Name

  • display_rounding_warning [readonlyboolean]: Display Rounding Warning

  • fiscal_country_codes [char]: Fiscal Country Codes

  • full_name [char]: Name

  • id [readonlyinteger]: ID

  • inverse_rate [readonlyfloat]: Inverse Rate

  • is_current_company_currency [readonlyboolean]: Is Current Company Currency

  • iso_numeric [integer]: Currency numeric code.

  • name [requiredchar(3)]: Currency

  • position [selection]: Symbol Position

  • rate [readonlyfloat]: Current Rate

  • rate_ids [one2many: res.currency.rate]: Rates

  • rate_string [readonlychar]: Rate String

  • rounding [float]: Rounding Factor

  • symbol [requiredchar]: Symbol

  • write_date [readonlydatetime]: Last Updated on

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