Odoo 19.0 Community · Persistent

account.reconcile.model.line: fields, relations and API

The account.reconcile.model.line model ("Rules for the reconciliation model") is a persistent model declared by the Invoicing module. It exposes 19 fields, 10 of them declared directly on the model; 1 field from other models points to it. Below you will find every field with its technical name, type, label and relations, followed by an Odoo 19 JSON-2 API call.

Model identity

Technical name
account.reconcile.model.line
Label
Rules for the reconciliation model
Type
Persistent (models.Model)
SQL table
account_reconcile_model_line
Origin module
Invoicing (account)
Default order (_order)
sequence, id
Inherits from (mixins)
analytic.mixin

Model fields

10 own fields, 3 inherited from mixins and 6 automatic ORM fields. Click a name to get a direct link to that field.

19 of 19 fields shown

Technical nameLabelTypeDetails
account_idAccountmany2one
amountFloat Amountfloat
computed, stored
amount_stringAmount

Value for the amount of the writeoff line * Percentage: Percentage of the balance, between 0 and 100. * Fixed: The fixed value of the writeoff. The amount will count as a debit if it is negative, as a credit if it is positive. * From Label: There is no need for regex delimiter, only the regex is needed. For instance if you want to extract the amount from R:9672938 10/07 AX 9415126318 T:5L:NA BRT: 3358,07 C: You could enter BRT: ([\d,]+) If the label is "01870912 0009065 00115" and you need the amount in decimal format (e.g. 90.65), you can use a regex with capturing groups, for example: \s+0*(\d+?)(\d{2})(?=\s) In this case: • the first group captures the integer part • the second group captures the decimal part (last two digits)

char
required
amount_typeAmount Typeselection
required

Values: fixed (Fixed), percentage (Percentage of balance), percentage_st_line (Percentage of statement line), regex (From label)

company_idCompanymany2one

related: model_id.company_id

labelLabelchar
translatable
model_idModelmany2one
read-only
partner_idPartnermany2one
sequenceSequenceinteger
required
tax_idsTaxesmany2many
analytic_distributionAnalytic Distributionjson
computed, stored

inherited from analytic.mixin

analytic_precisionAnalytic Precisioninteger

inherited from analytic.mixin

distribution_analytic_account_idsDistribution Analytic Accountmany2many
computed

inherited from analytic.mixin

create_dateCreated ondatetime
read-onlyautomatic
create_uidCreated bymany2one
read-onlyautomatic
display_nameDisplay Namechar
read-onlycomputedautomatic
idIDinteger
read-onlyautomatic
write_dateLast Updated ondatetime
read-onlyautomatic
write_uidLast Updated bymany2one
read-onlyautomatic

Relations

Models linked from this model

Fields of other models pointing here

Reading this model through the API

Odoo 19 JSON-2 API call reading the first five records with real fields of the model. Replace the instance, database and API key with your own.

curl
curl -X POST "https://your-instance.odoo.com/json/2/account.reconcile.model.line/search_read" \
  -H "Authorization: bearer $ODOO_API_KEY" \
  -H "X-Odoo-Database: your-db" \
  -H "Content-Type: application/json" \
  -d '{"domain":[],"fields":["amount_string","amount_type","sequence","account_id","company_id"],"limit":5}'
Python (requests)
import requests

BASE_URL = "https://your-instance.odoo.com/json/2"
headers = {"Authorization": f"bearer {API_KEY}", "X-Odoo-Database": "your-db"}

res = requests.post(
    f"{BASE_URL}/account.reconcile.model.line/search_read",
    headers=headers,
    json={"domain": [], "fields": ["amount_string","amount_type","sequence","account_id","company_id"], "limit": 5},
)
res.raise_for_status()
print(res.json())
  • External API access requires Odoo's Custom plan.
  • XML-RPC and JSON-RPC will be removed in Odoo 22 (fall 2028): use JSON-2.
  • The access rights and record rules of the key's user apply.

Cite this tool

Writing a tutorial, internal documentation or a forum answer? Copy this link to send your readers to the up-to-date reference.

<a href="https://aidoo.ai/en/outils/explorateur-modeles-odoo/account-reconcile-model-line">account.reconcile.model.line (Odoo 19.0)</a>

Sources

Data verified on September 23, 2026 · Odoo 19.0 Community

Have an Odoo project, or want to put your ERP to work with AI? Let's talk

Implementation, custom module development, connecting Claude or ChatGPT to your data: tell us about your context and we will reply within 24 business hours.