fill document fields using csv file
I'm using Nuxeo SDK , i want to import many files using a csv file which contains metadata , i mean every column is a field in nuxeo interface. I've heard about Nuxeo-csv but i can't find how to use it and i don't know if it supported what i want to do.
Hi,
To be able to modify the date format you need to override the actions bean: @Name("csvImportActions")
and extend the org.nuxeo.ecm.csv.CSVImportActions
. Then, you need to redefine the importCSVFile
method (see this page). In this method, you will be able to change the CSVImporterOptions
objet to handle your date format.
Hi,
You'll find here the documentation about Nuxeo CSV. Don't hesitate if you need more information about this add-on.