Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Aplikacije
    Finance
    • Knjigovodstvo
    • Obračun
    • Stroški
    • Spreadsheet (BI)
    • Dokumenti
    • Podpisovanje
    Prodaja
    • CRM
    • Prodaja
    • POS Shop
    • POS Restaurant
    • Naročnine
    • Najem
    Spletne strani
    • Website Builder
    • Spletna trgovina
    • Blog
    • Forum
    • Pogovor v živo
    • eUčenje
    Dobavna veriga
    • Zaloga
    • Proizvodnja
    • PLM
    • Nabava
    • Vzdrževanje
    • Kakovost
    Kadri
    • Kadri
    • Kadrovanje
    • Odsotnost
    • Ocenjevanja
    • Priporočila
    • Vozni park
    Marketing
    • Družbeno Trženje
    • Email Marketing
    • SMS Marketing
    • Dogodki
    • Avtomatizacija trženja
    • Ankete
    Storitve
    • Projekt
    • Časovnice
    • Storitve na terenu
    • Služba za pomoč
    • Načrtovanje
    • Termini
    Produktivnost
    • Razprave
    • Odobritve
    • IoT
    • Voip
    • Znanje
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industrije
    Trgovina na drobno
    • Book Store
    • Trgovina z oblačili
    • Trgovina s pohištvom
    • Grocery Store
    • Trgovina s strojno opremo računalnikov
    • Trgovina z igračami
    Food & Hospitality
    • Bar and Pub
    • Restavracija
    • Hitra hrana
    • Guest House
    • Beverage Distributor
    • Hotel
    Nepremičnine
    • Real Estate Agency
    • Arhitekturno podjetje
    • Gradbeništvo
    • Estate Management
    • Vrtnarjenje
    • Združenje lastnikov nepremičnin
    Svetovanje
    • Računovodsko podjetje
    • Odoo Partner
    • Marketinška agencija
    • Law firm
    • Pridobivanje talentov
    • Audit & Certification
    Proizvodnja
    • Tekstil
    • Metal
    • Pohištvo
    • Hrana
    • Brewery
    • Poslovna darila
    Health & Fitness
    • Športni klub
    • Trgovina z očali
    • Fitnes center
    • Wellness Practitioners
    • Lekarna
    • Frizerski salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Sistemi sončne energije
    • Izdelovalec čevljev
    • Čistilne storitve
    • HVAC Services
    Ostali
    • Neprofitna organizacija
    • Agencija za okolje
    • Najem oglasnih panojev
    • Fotografija
    • Najem koles
    • Prodajalec programske opreme
    Browse all Industries
  • Skupnost
    Learn
    • Tutorials
    • Dokumentacija
    • Certifikati
    • Šolanje
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Prenesi
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Dogodki
    • Prevodi
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Sklici kupca
    • Podpora
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Določanje cen
  • Pomoč

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

External API xmlrpc error: KeyError: 'report_options'

Naroči se

Get notified when there's activity on this post

This question has been flagged
apixmlrpckeyerrorreceivables
2 Odgovori
4467 Prikazi
Avatar
Joren 's Jongers

I am building an API integration for customers of Odoo online, for which i have to retrieve the aged receivables. When fetching data from the model account.aged.receivable using xml-rpc, I get the error: KeyError: 'report_options’.


NodeJS code to reproduce the call:


import Odoo from 'async-odoo-xmlrpc';
const odoo = new Odoo({
  url: {{url}},
  db: {{db}},
  username: {{username}},
  password: {{password}},
});
await odoo.connect();
const receivables = await odoo.execute_kw('account.aged.receivable', 'search', [[]]);

Stack trace:

[ERROR] 11:59:29 Error: XML-RPC fault: Traceback (most recent call last):
File "/home/odoo/src/odoo/saas-15.2/odoo/addons/base/controllers/rpc.py", line 93, in xmlrpc_2
response = self._xmlrpc(service)
File "/home/odoo/src/odoo/saas-15.2/odoo/addons/base/controllers/rpc.py", line 73, in _xmlrpc
result = dispatch_rpc(service, method, params)
File "/home/odoo/src/odoo/saas-15.2/odoo/http.py", line 141, in dispatch_rpc
result = dispatch(method, params)
File "/home/odoo/src/odoo/saas-15.2/odoo/service/model.py", line 41, in dispatch
res = fn(db, uid, *params)
File "/home/odoo/src/odoo/saas-15.2/odoo/service/model.py", line 169, in execute_kw
return execute(db, uid, obj, method, *args, **kw or {})
File "/home/odoo/src/odoo/saas-15.2/odoo/service/model.py", line 94, in wrapper
return f(dbname, *args, **kwargs)
File "/home/odoo/src/odoo/saas-15.2/odoo/service/model.py", line 176, in execute
res = execute_cr(cr, uid, obj, method, *args, **kw)
File "/home/odoo/src/odoo/saas-15.2/odoo/service/model.py", line 160, in execute_cr
result = odoo.api.call_kw(recs, method, args, kw)
File "/home/odoo/src/odoo/saas-15.2/odoo/api.py", line 457, in call_kw
result = _call_kw_model(method, model, args, kwargs)
File "/home/odoo/src/odoo/saas-15.2/odoo/api.py", line 430, in _call_kw_model
result = method(recs, *args, **kwargs)
File "/home/odoo/src/odoo/saas-15.2/odoo/models.py", line 1812, in search
res = self._search(args, offset=offset, limit=limit, order=order, count=count)
File "/home/odoo/src/odoo/saas-15.2/odoo/models.py", line 4759, in _search
query = self._where_calc(args)
File "/home/odoo/src/odoo/saas-15.2/odoo/models.py", line 4517, in _where_calc
return Query(self.env.cr, self._table, self._table_query)
File "/home/odoo/src/enterprise/saas-15.2/account_reports/models/account_accounting_report.py", line 83, in _table_query
query = self._get_sql()
File "/home/odoo/src/enterprise/saas-15.2/account_reports/models/account_aged_partner_balance.py", line 95, in _get_sql
options = self.env.context['report_options']
KeyError: 'report_options'


Since self.env.context is being queried for ‘report_options’, I think something might be wrong with the configuration of the Odoo environment.

Does anyone know how to solve this issue?


Thanks in advance!


0
Avatar
Opusti
Joren 's Jongers
Avtor

Test

Joren 's Jongers
Avtor


const contextParam = {
'context': {
'report_options': {
'date': {
'date_from': 'YYYY-MM-DD',
'date_to': 'YYYY-MM-DD'
},
'account_type_aml_sign': -1
}
}
}

Unfortunately, the library async-odoo-xmlrpc does not support the extra paramater. A PR has been opened to add this in, but at the time of writing it is not yet merged.
I used the library xmlrpc, on which async-odoo-xmlrpc is based, directly to get the request to work in nodeJS, like so:

client.methodCall(
'execute_kw',
[db, uid, password, 'account.aged.receivable', 'search_read', [[]], contextParam],
(err, val) => {
// Handle response here
}

Avatar
Jort de Vreeze
Best Answer

That's because account.aged.receivable inherits the account.aged.partner (i.e., account_aged_partner_balance) model which in turn requires context values to query the data for the report.

Inspecting the source code for 'account_aged_partner_balance' shows that this method '_get_sql'  needs at least:

  • options['date']['date_to']
  • options['filter_account_type']

For Odoo RPC you can set the context values (see also https://stackoverflow.com/questions/46586281/alter-odoo-xmlrpc-context-to-use-a-specific-language):

odoo.execute_kw(
'account.aged.receivable',
'search_read',
[[]],
{
'context': {
'report_options': {
'data': {
'date_to': value
},
'filter_account_type': 'receivable',
}
}
}
); 

I haven't tested this, but I hope it helps.

0
Avatar
Opusti
Avatar
Joren 's Jongers
Avtor Best Answer

@jort, indeed, that does the trick, thanks!

0
Avatar
Opusti
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Prijavi
Related Posts Odgovori Prikazi Aktivnost
External API Aged Payable/ Receivable
api xmlrpc payables receivables aging
Avatar
0
okt. 23
1642
XML-RPC API search_read method 100 records' limitation
api xmlrpc
Avatar
Avatar
Avatar
3
jan. 23
9497
XMLRPC API Search and Read - How to Supply Multiple Filters Solved
api xmlrpc
Avatar
1
mar. 22
6575
(\'Error, a partner cannot follow twice the same object.\', None)\n'>
api xmlrpc
Avatar
Avatar
1
feb. 22
6705
Logging XML RPC requests and responses into another log file Solved
api xmlrpc
Avatar
Avatar
1
jul. 20
10418
Community
  • Tutorials
  • Dokumentacija
  • Forum
Open Source
  • Prenesi
  • Github
  • Runbot
  • Prevodi
Services
  • Odoo.sh Hosting
  • Podpora
  • Nadgradnja
  • Custom Developments
  • Izobraževanje
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Sredstva blagovne znamke
  • Kontakt
  • Zaposlitve
  • Dogodki
  • Podcast
  • Blog
  • Stranke
  • Pravno • Zasebnost
  • Varnost
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now