What is the difference between `db_connect` and `get_db` to obtain a Cursor?
When I need a new Cursor() for a database, I have at least 2 ways to initialize a new one. Using the helpers functions in `openerp.pooler`: cr = openerp.pooler.get_db('name_of_my_database').cursor() #...
View ArticleWhy doesn't fetchall() return the same thing as the SQL request?
When I run this query on Postgresql : SELECT code, total FROM hr_payslip_line WHERE slip_id=1 I get : ____________________________ | code | total | __________________________ | BASE | 57000.00 |...
View ArticleHow can I speedup account.account creation?
I need to speed up an installation script which creates a large number of account.account records using the public ORM API. I do this by calling (through erppeek) `model('account.account').create` for...
View ArticleUsing hosted openerp with API
Hi, I am using the online hosted solution of OpenERP and I want to use the API to bridge openerp with our e-shopping solutions. However I can't find any documentation on how to use the API with OpenERP...
View ArticleOpenERP Java API
Hi everybody. Sorry to bother you but i'm newbie on using Open ERP webservices functionnalities. So I decided to use the OpenERP Java API in order to communicate with the Open Erp XML-RPC webservices....
View ArticleIs it possible to access OpenERP data from an external web application?
I would like to link OpenERP with my firm intranet, for example, to let users punch in or out from the intranet. The user would click the "punch in" (or out) button in the intranet site, and all the...
View ArticleOpenERP Online Edition API - is there one ?
Is there a API for OpenERP Online edition ? If not, I am very surprised. Need to integrate between OpenERP and another system. Thanks in advance.
View ArticleSample code for Applying payment to Invoice via XML-RPC (PHP) ?
I am using PHP to communicate with the XML-RPC API. I have been able to successfully create and validate an invoice but I am running into a problem applying a payment to an invoice. Does anyone know...
View ArticleRecommended library for standalone javascript/HTML5 application?
Is there an OpenERP javascript client library that can be used for another application? Or a recommended XML/RPC library for javascript? Thanks
View Articlehow to configure Etherpad server and API?
Is there any documentation to setup the Etherpad at company level ? Iknow where to find the config menu; but then What kind of server name to declare? Where do we find out the API key?
View ArticleWhere can I find an OpenERP Web Service API method list?
We are looking to implement OpenERP for a client in a web based application. This means we will be using the web services through XML-RPC to connect with their database. We have already found quite...
View Articleis OpenERP opensource for developers?
Hello I have just informed by my developer that openerp is not opensource therefore he cannot integrate with another program. Is it true or he does not have the right skills and knowledge? Is any one...
View ArticleHow implement RESTful API on OpenERP v7
My company is using Purchase, Sale and Accounting module in OpenERP. We have few business apllications.User can store informations from Accout module in OpenERP as well as from different businesses....
View ArticleHow to install customize modules automatically in OpenERP V7.
I'm writing Restful API on Openerp v7. I'm going to create one Database for one user.I want to install Account, Sale and Purchase modules at the time new Database creation. I tried by modifying...
View Articlehelp setting up xmlrpc
Hello, I am having some trouble with getting a php file using the xmlrpc to work properly. I saw the tutorial to create a php xml rpc script but for some reason the only thing that its doing is just...
View ArticleAssign user to the Multi Companies group using the API?
I am attempting to assign a user to a group in OpenERP 7.0 using the API, via the openerp-client-lib Python library. When I try to associate a user with the group with what I believe to be the correct...
View Articleadd implied_ids in group
Hello everyone, I have a problem when I try to add a implied_id in the implied_ids atribute of res.groups. I tried this code: implied_id = obj.search([('name', '=', 'Mostrar las iniciativas propias')])...
View Articlev7 google api configuration, why do I get XmlHttpRequestError ?
The configuration of the Google API is not documented. Account : [ 7077467779379@developer.gserviceaccount.com ] Auto synchronize : [ x ] Use local browser : [ x ] Secrets path : [ ] <<...
View ArticleHow to generate API notifications when status changes?
How to send a notification through Rest or API, when there is a status change. For example, if a PO is received, a SO invoiced, or a Product created
View ArticleWhat database do I specify to connect to the hosted solution?
The documentation as to how to connect to the hosted OpenERP solution is pretty limited. I've figured out that the correct endpoint is https:// [www.openerp.com/xmlrpc], but when I try to reference the...
View Article