Hi.
I have a stand alone python code that interacts with a few variables, im wondering if there is a way to conect to OpenERP and extract those variables from sale.order.
Is it possible?, how can i do it?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hi.
I have a stand alone python code that interacts with a few variables, im wondering if there is a way to conect to OpenERP and extract those variables from sale.order.
Is it possible?, how can i do it?
You can use openerp client lib (search for it on Github), and try this to start with:
import openerplib
connection = openerplib.get_connection(hostname="localhost", database=dbname,
login=username, password=pwd)
sale_model = connection.get_model("sale.order")
ids = sale_model.search([])
for id in ids:
so = sale_model.read(id, ["name"])
print so
Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!
Zarejestruj sięPowiązane posty | Odpowiedzi | Widoki | Czynność | |
---|---|---|---|---|
|
1
mar 15
|
4282 | ||
|
0
mar 15
|
4003 | ||
How to get count of projects per partner?
Rozwiązane
|
|
2
mar 15
|
9078 | |
Database for my module not created
Rozwiązane
|
|
4
kwi 24
|
2462 | |
|
1
maj 22
|
4986 |
Yes, it is possible. You can refer web services in OpenERP to do it. Link: https://doc.openerp.com/6.0/developer/6_22_XML-RPC_web_services/