Skip to content

A Java API to connect to Odoo and manage data using the XMLRPC interface.

License

Notifications You must be signed in to change notification settings

odoo-java/odoo-java-api

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Odoo Java Api

This repo has been forked because of the project DeBortoliWines#31

A Java API to connect to Odoo and manage data using the XMLRPC interface.

The API reduces the amount of boiler plate code needed to communicate with Odoo by doing error checking and type conversions.

The Api IS known to work perfectly :

For more information, including a Wiki please see the project on SourceForge: https://sourceforge.net/projects/openerpjavaapi/

The project is realeased under the Apache V2 license starting from version 1.5.
Earlier versions are dual licenced and developers can choose between LGPL3 (original license) and Apache V2.

Dependencies

This project depends on the XMLRPC library by Apache: http://ws.apache.org/xmlrpc

Download the latest version from apache and extract the tar.

The required jar files are :

  • xmlrpc-client-3.1.3.jar
  • xmlrpc-common-3.1.3.jar
  • ws-commons-util-1.0.2.jar

New dependency https://github.com/briandilley/jsonrpc4j

  • jsonrpc4j

Add those jar files to your classpath and you should be ok.

Compilation

This is a maven project, once cloned go into the repo Run : mvn package or any other goal that will produce a .jar in the target folder

Examples

Context manipulation

Values must cast in correct format

    Map inputMap = new java.util.HashMap();
    inputMap.put("active_id", Integer.valueOf(move_id.toString()));
    inputMap.put("active_ids", new Object[]{ Integer.valueOf(move_id.toString()) }  );
    openERPSession.getContext().putAll(inputMap);

Get Many2one results

/**
* Get id of a Many2One property of an object row. Static method.
*
* @param row object row
* @param property should be something like "xxx_id"
* @return propertyId the id of the property
*/
public static Integer getMany2OneId(final Row row, final String property) {
if (row != null && property != null) {
Object[] propertyIdName = (Object[])row.get(property);
// propertyIdName[0] = id of Many2One linked object
// propertyIdName[1] = name of Many2One linked object
return (propertyIdName == null ? null : (Integer)propertyIdName[0]);
}
return null;
}

Execute command

openERPSession.executeCommand("stock.inventory", "action_done", 
        new Object[]{Integer.valueOf(inventory_id.toString())});

Or with context forced :

openERPSession.executeCommandWithContext("account.move.reversal", "reverse_moves", 
						new Object[]{ remove_id }
				);

Getting fields for audit / tracking purposes

// authenticate

ObjectAdapter partnerAdapter = session.getObjectAdapter("res.partner");

Row newPartner = partnerAdapter.getNewRow(new String[]{"name", "ref", "email", "field1", "field2"});
newPartner.put("name", "Jhon Doe");
newPartner.put("ref", "Reference value");
newPartner.put("email", "personalemail@mail.com");
newPartner.put("field1", "1");
newPartner.put("field2", "2");

partnerAdapter.createObject(newPartner);

// Getting fields for tracking/audit purposes
HashMap<String, Object> rowSaved = newPartner.getFieldsOdoo().toString();

saveToDatabaseForTrackingPurpose(rowSaved);
saveToDatabaseForTrackingPurpose(newPartner.getID());

Other ressources [legacy]

Known bugs

Since v14, the render method is now private. So printing is no more possible with rpc call. For the references :

A workaround is to create a module to make the render method public until we implement this method OCA/odoorpc#88 (comment) a better workaround is to propose a PR in this repo to implement the missing part

About

A Java API to connect to Odoo and manage data using the XMLRPC interface.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%