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 name | Label | Type | Details |
|---|---|---|---|
| account_id | Account | many2one | |
| amount | Float Amount | float | computed, stored |
| amount_string | Amount 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_type | Amount Type | selection | required Values: |
| company_id | Company | many2one | related: |
| label | Label | char | translatable |
| model_id | Model | many2one | read-only |
| partner_id | Partner | many2one | |
| sequence | Sequence | integer | required |
| tax_ids | Taxes | many2many | |
| analytic_distribution | Analytic Distribution | json | computed, stored inherited from analytic.mixin |
| analytic_precision | Analytic Precision | integer | inherited from analytic.mixin |
| distribution_analytic_account_ids | Distribution Analytic Account | many2many | computed inherited from analytic.mixin |
| create_date | Created on | datetime | read-onlyautomatic |
| create_uid | Created by | many2one | read-onlyautomatic |
| display_name | Display Name | char | read-onlycomputedautomatic |
| id | ID | integer | read-onlyautomatic |
| write_date | Last Updated on | datetime | read-onlyautomatic |
| write_uid | Last Updated by | many2one | read-onlyautomatic |
Relations
Models linked from this model
- account.account: account_id
- account.reconcile.model: model_id
- account.tax: tax_ids
- res.company: company_id
- res.partner: partner_id
Fields of other models pointing here
- account.tax: account_reconcile_model_line_ids
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 -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}'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.