Antonio Malatesta
Antonio Malatesta

Reputation: 101

How to import data in Odoo from CSV files?

In older versions of Odoo it was possible to import data from csv file only when you were installing a module (using init).

This function is now deprecated because you need to use the data folder that updates the data every time you update the module.

The only way to import data when you install module is using xml with the attribute noupdate="1".

To import data we use an ETL program that creates CSV file (create the XML file is more complex).

Does anybody know why you can not use the CSV file to import data only upon installation?

To perform bulk imports have always been used CSV. Someone has resolved, or the only way is to create XML files of thousands of tags??

Upvotes: 2

Views: 8716

Answers (1)

ChesuCR
ChesuCR

Reputation: 9630

If you go to a list view of some model, you can see the "Import" button. Press it in order to import CSV files to that table

If you want to import data to many tables at the same time, then you need to use the external ids.

I recommend you to check this slideshow as well:

How to Import data into OpenERP V7

Upvotes: 3

Related Questions