Difference between revisions of "Module Exports En"

From Dolibarr ERP CRM Wiki
Jump to navigation Jump to search
m
m
Line 6: Line 6:
 
Solutions to make mass imports are described in the page [[Mass imports]]
 
Solutions to make mass imports are described in the page [[Mass imports]]
  
= Use the Dolibarr export module =
+
 
 +
 
 +
 
 +
= [[File:Art.png]] Use the Dolibarr export module =
 
The Exports module allows yous to make personalize exports of data using an assistant. You should be able to export data with no technical knowledges.
 
The Exports module allows yous to make personalize exports of data using an assistant. You should be able to export data with no technical knowledges.
 
# First step is to enable the export module. Then go on menu Tools - Export and choose a predefined dataset.
 
# First step is to enable the export module. Then go on menu Tools - Export and choose a predefined dataset.
Line 14: Line 17:
 
Possible formats are CSV and TSV (Text files) or XLS (Native Excel files)
 
Possible formats are CSV and TSV (Text files) or XLS (Native Excel files)
  
 
+
= [[File:Outils.png]] Develop your own export script =
= Develop your own export script =
 
 
Any language can be used if this language can read a database.
 
Any language can be used if this language can read a database.
 
You just have to read the table of the entity you want to export and build a file, with format of your choice, from any fields available in table.
 
You just have to read the table of the entity you want to export and build a file, with format of your choice, from any fields available in table.
 
So the only thing to know is which table contains data you want to export.
 
So the only thing to know is which table contains data you want to export.
 
To help you, page [[List of tables]] presents you the list of all Dolibarr tables.
 
To help you, page [[List of tables]] presents you the list of all Dolibarr tables.

Revision as of 11:38, 1 August 2009

To export Dolibarr data, there is several solutions described here. Solutions to make mass imports are described in the page Mass imports



Art.png Use the Dolibarr export module

The Exports module allows yous to make personalize exports of data using an assistant. You should be able to export data with no technical knowledges.

  1. First step is to enable the export module. Then go on menu Tools - Export and choose a predefined dataset.
  2. Then choose fields you wan in your output files, and in which order.
  3. Once data are selected, you can choose the format of the output file build by clicking on the "Build" button.
  4. After few seconds, a file is available for download.

Possible formats are CSV and TSV (Text files) or XLS (Native Excel files)

Outils.png Develop your own export script

Any language can be used if this language can read a database. You just have to read the table of the entity you want to export and build a file, with format of your choice, from any fields available in table. So the only thing to know is which table contains data you want to export. To help you, page List of tables presents you the list of all Dolibarr tables.