v 8.0 v 9.0 Third Party 390
Download for v 9.0
Availability
Odoo Online
Odoo.sh
On Premise
Technical Name import_loader
LicenseLGPL-3
Websitehttps://github.com/dreispt/odoo-addons
Versions 9.0 8.0
You bought this module and need support? Click here!

The output steps available in Pentaho Kettle and Talend have a few limitations. They do not support XML Ids and the same output step can perform only either create or write operations, not both (related to https://github.com/odoo/odoo/pull/2258).

This module provides a server side proxy model, import.loader, that solves those limitations. New records created should have a data field with the payload to import. This payload is parsed and then imported into the target model, using the load() method. This means that serialization rules that apply to CSV file import are apply here.

The ETL tools can then perform naive create operations on import.loader, providing a data string with the payload, and this model will do the necessary handling and loading.

The payload is string representing a list of rows. Each row is a dictionary of field names/values, and must include an additional _model key indicating the target model.

This means that the same payload can load one or more records, into one or more models.

Here is an example of a date payload to create or update a new contact:

` { "_model": "res.partner" , "id": "res_partner_eric" , "name": "Eric" , "is_company": false , "user_id/id": "base.user_root" } `

A usage example for Pentaho Kettle is provided in the import_loader_demo.ktr file.

Please log in to comment on this module

  • The author can leave a single reply to each comment.
  • This section is meant to ask simple questions or leave a rating. Every report of a problem experienced while using the module should be addressed to the author directly (refer to the following point).
  • If you want to start a discussion with the author, please use the developer contact information. They can usually be found in the description.
Please choose a rating from 1 to 5 for this module.