Skip to Content
Odoo Menu
  • Prisijungti
  • Išbandykite nemokamai
  • Programėlės
    Finansai
    • Apskaita
    • Pateikimas apmokėjimui
    • Sąnaudos
    • Skaičiuoklė (BI)
    • Dokumentai
    • Pasirašymas
    Pardavimai
    • CRM
    • Pardavimai
    • Kasų sistema - Parduotuvė
    • Kasų sistema - Restoranas
    • Prenumeratos
    • Nuoma
    Svetainės
    • Svetainių kūrėjimo įrankis
    • El. Prekyba
    • Internetinis Tinklaraštis
    • Forumas
    • Tiesioginis pokalbis
    • eMokymasis
    Tiekimo grandinė
    • Atsarga
    • Gamyba
    • PLM
    • Įsigijimai
    • Priežiūra
    • Kokybė
    Žmogaus ištekliai
    • Darbuotojai
    • Įdarbinimas
    • Atostogos
    • Įvertinimai
    • Rekomendacijos
    • Transporto priemonės
    Rinkodara
    • Socialinė rinkodara
    • Rinkodara el. paštu
    • SMS rinkodara
    • Renginiai
    • Rinkodaros automatizavimas
    • Apklausos
    Paslaugos
    • Projektas
    • Darbo laiko žiniaraščiai
    • Priežiūros tarnyba
    • Pagalbos tarnyba
    • Planavimas
    • Rezervacijos
    Produktyvumas
    • Diskucija
    • Patvirtinimai
    • IoT
    • VoIP
    • Žinių biblioteka
    • WhatsApp
    Trečiųjų šalių programos Odoo Studija Odoo debesijos platforma
  • Pramonės šakos
    Mažmeninė prekyba
    • Knygynas
    • Drabužių parduotuvė
    • Baldų parduotuvė
    • Maisto prekių parduotuvė
    • Techninės įrangos parduotuvė
    • Žaislų parduotuvė
    Food & Hospitality
    • Barai ir pub'ai
    • Restoranas
    • Greitasis maistas
    • Guest House
    • Gėrimų platintojas
    • Hotel
    Nekilnojamasis turtas
    • Real Estate Agency
    • Architektūros įmonė
    • Konstrukcija
    • Estate Managament
    • Sodininkauti
    • Turto savininkų asociacija
    Konsultavimas
    • Accounting Firm
    • Odoo Partneris
    • Marketing Agency
    • Teisinė firma
    • Talentų paieška
    • Auditai & sertifikavimas
    Gamyba
    • Textile
    • Metal
    • Furnitures
    • Maistas
    • Brewery
    • Įmonių dovanos
    Sveikata & Fitnesas
    • Sporto klubas
    • Akinių parduotuvė
    • Fitneso Centras
    • Sveikatos praktikai
    • Vaistinė
    • Kirpėjas
    Trades
    • Handyman
    • IT įranga ir palaikymas
    • Saulės energijos sistemos
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Kiti
    • Nonprofit Organization
    • Aplinkos agentūra
    • Reklaminių stendų nuoma
    • Fotografavimas
    • Dviračių nuoma
    • Programinės įrangos perpardavėjas
    Browse all Industries
  • Bendrija
    Mokykitės
    • Mokomosios medžiagos
    • Dokumentacija
    • Sertifikatai
    • Mokymai
    • Internetinis Tinklaraštis
    • Tinklalaidės
    Skatinkite švietinimą
    • Švietimo programa
    • Scale Up! Verslo žaidimas
    • Aplankykite Odoo
    Gaukite programinę įrangą
    • Atsisiųsti
    • Palyginkite versijas
    • Leidimai
    Bendradarbiauti
    • Github
    • Forumas
    • Renginiai
    • Vertimai
    • Tapkite partneriu
    • Services for Partners
    • Registruokite jūsų apskaitos įmonę
    Gaukite paslaugas
    • Susiraskite partnerį
    • Susirask buhalterį
    • Susitikti su konsultantu
    • Diegimo paslaugos
    • Klientų rekomendavimas
    • Palaikymas
    • Atnaujinimai
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Gaukite demo
  • Kainodara
  • Pagalba

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

  • CRM
  • e-Commerce
  • Apskaita
  • Atsarga
  • PoS
  • Projektas
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Žymos (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Žymos (View all)
odoo accounting v14 pos v15
About this forum
Pagalba

How To: access the Odoo Online (SAAS) object model using Python

Prenumeruoti

Get notified when there's activity on this post

This question has been flagged
pythononlineapixmlrpcodoo16features
1 Atsakyti
5612 Rodiniai
Portretas
Steve Fossey

Hello all, I thought I would post this challenge I have had.


I am used to other ERPs where the API is RESTful and I found it a real challenge to get data from the online SAAS version of Odoo. Starting with an almost complete lack of documentation and no Swagger page, and ending with the archaic RPC API. But in the end, it is all possible, and seeing as there is very little posted here about how to do stuff like this, I thought I'd share it and hope others will weigh in with things they've worked on too.

First I figured out just how to get a contact with the server:


I used Python just because it was close to hand and I was using it for API calls to Epicor ERP recently.


import requests
import xmlrpc.client
import xml\.etree\.ElementTree\ as\ ET
import\ json

url\ =\ "http://\[myInstance\]\.odoo\.com"
db\ =\ "\[myDatabase\]"
usr\ =\ "myUser"
pwd\ =\ "myPassword"
nl\ =\ "\n"
res\ =\ ""

try:
\ \ \ \
\ \ \ \ common\ =\ xmlrpc\.client\.ServerProxy\('\{\}/xmlrpc/2/common'\.format\(url\)\)
\ \ \ \ uid\ =\ common\.authenticate\(db,\ usr,\ pwd,\ \{\}\)\ \ \
\ \ \ \ data\ =\ json\.dumps\(common\.version\(\)\)
\ \ \ \ for\ k,v\ in\ common\.version\(\)\.items\(\):
\ \ \ \ \ \ \ \ res\ \+=\ str\(k\)\ \+\ ":\ "\ \+\ str\(v\)\ \+\ nl
\ \ \ \ \ \ \ \
except\ Exception\ as\ e:
\ \ \ \ res\ \+=\ "except:\ "\ \+\ str\(e\)\ \+\ nl

finally:
\ \ \ \
\ \ \ \ print\(res\)

This\ got\ me\ the\ basic\ server\ info\ once\ I\ had\ it\ working:



So\ at\ least\ I\ knew\ I\ was\ contacting\ my\ database!


Then\ I\ figured\ out\ code\ to\ get\ me\ partner\ info,\ based\ on\ the\ documentation\.\ Frankly,\ the\ documentation\ leaves\ a\ lot\ out\.\ Maybe\ all\ you\ smart\ people\ already\ know\ how\ to\ parse\ out\ JSON\ and\ so\ on,\ but\ it\ was\ quite\ a\ challenge\ for\ me\.





import\ requests
import\ xmlrpc\.client
import\ json

url\ =\ "http://\[instance\]\.odoo\.com"
db\ =\ "\[dbName\]"
usr\ =\ "userName"
pwd\ =\ "password"
nl\ =\ "\n"
api\ =\ "/xmlrpc/2/"
rslt\ =\ ""
info\ =\ ""

try:

\ \ \ \ \#\ get\ the\ valid\ uid\ of\ an\ authenticated\ API\ user
\ \ \ \ common\ =\ xmlrpc\.client\.ServerProxy\('\{\}/xmlrpc/2/common'\.format\(url\)\)
\ \ \ \ uid\ =\ common\.authenticate\(db,\ usr,\ pwd,\ \{\}\)\ \ \

\ \ \ \ \#\ set\ up\ the\ ServerProxy
\ \ \ \ models\ =\ xmlrpc.client.ServerProxy('{}/xmlrpc/2/object'.format(url))

# check access to the object ("partner" in this case)
access_check = models.execute_kw \
(db, uid, pwd, 'res.partner', 'check_access_rights',\
['read'], {'raise_exception': False})

if access_check == True:
# get the ids of partner objects that only are companies
ids = models.execute_kw(db, uid, pwd, 'res.partner', \
'search', [[['is_company','=', True]]])

# get the fields shown that match the ids
rslt = json.dumps(models.execute_kw (db, uid, pwd, 'res.partner', \
'read', [ids], {'fields': ['name', 'phone']}),indent=1)

data = json.loads(rslt)

for i in data:
info += i["name"] + nl

else:
raise Exception("Model not accessible")

except Exception as e:
rslt += "except: " + str(e) + nl

finally:

print(info)


This allowed me to get a list of partner names where the partner is a company. Odoo's unique model basically makes everybody you know a "Partner", so you then filter to figuer out who is a contact, a company, a vendor, a customer, etc.


Also notice that you first use filters to get the ids related to your search, then you actually read the database based on the ids you return. really weird for someone who grew up with linq, SQL, and REST!


Anyways, this gave me a list of partners that look something like this:



That's all in Python 3.11 and scripted in IDLE by someone who did Python in computer science 10 years ago and hasn't used it since. If I can do it so can you. COmment below, let's get this community interested in posting ideas and cool projects like the big ERPs!

0
Portretas
Atmesti
Portretas
Niyas Raphy (Walnut Software Solutions)
Best Answer

Hi,
Odoo xml rpc:  https://www.odoo.com/documentation/16.0/developer/reference/external_api.html
Json rpc: https://www.youtube.com/watch?v=J61gRPVSex4

Search Read:  https://www.youtube.com/watch?v=utH3uXkhJfo

Thanks

0
Portretas
Atmesti
Enjoying the discussion? Don't just read, join in!

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

Registracija
Related Posts Replies Rodiniai Veikla
API attachment question
python api xmlrpc
Portretas
Portretas
Portretas
Portretas
3
birž. 22
7581
ProtocolError for localhost:8069/xmlrpc/2/common: 409 Solved
python api xmlrpc odoo v15
Portretas
Portretas
2
gruod. 22
4899
Add map to my website
development python api googlemaps odoo16features
Portretas
0
gruod. 22
2325
How to register payment using Python XML-RPC in Odoo 12 Solved
python payment api xmlrpc odoo11
Portretas
Portretas
Portretas
Portretas
Portretas
5
rugs. 19
8980
odoo 9 xmlrpc api returns faultcode 2 when trying to print reports
python api xmlrpc python2.7 odoo9
Portretas
0
bal. 18
2483
Bendrija
  • Mokomosios medžiagos
  • Dokumentacija
  • Forumas
Atvirasis kodas
  • Atsisiųsti
  • Github
  • Runbot
  • Vertimai
Paslaugos
  • Odoo.sh talpinimas
  • Palaikymas
  • Atnaujinti
  • Pritaikytas programavimo kūrimas
  • Švietimas
  • Susirask buhalterį
  • Susiraskite partnerį
  • Tapkite partneriu
Apie mus
  • Mūsų įmonė
  • Prekės ženklo turtas
  • Susisiekite su mumis
  • Darbo pasiūlymai
  • Renginiai
  • Tinklalaidės
  • Internetinis Tinklaraštis
  • Klientai
  • Teisinis • Privatumas
  • Saugumas
الْعَرَبيّة 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 yra atvirojo kodo verslo programų rinkinys, kuris apima visas įmonės poreikius: CRM, El. Prekybą, Apskaitą, Atsargų, Kasų sistemą, Projektų valdymą ir kt.

Unikali Odoo vertės pasiūla – būti tuo pačiu metu labai lengvai naudojama ir visiškai integruota sistema.

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