Page 1 of 1

CSV Import

Posted: 01 Dec 2016, 13:39
by derJu
Hi,

how can I integrate the newly created fields into my inport?

best regards

Re: CSV Import

Posted: 02 Dec 2016, 11:07
by aimeos
Can you please add more details what you would like to achieve? It's not clear from your screenshot and description.

Re: CSV Import

Posted: 02 Dec 2016, 15:45
by derJu
Sorry,

thats my code, i try to import my own types inside see printscreen of my first contribution:

Code: Select all

controller.common.product.import.csv.separator = ,
controller.jobs.product.import.csv {
            container.type = Directory
            location =  /var/www/vhosts/demo.de/httpdocs/typo3temp/aimeos/
            mapping {
               item {
                  0 = product.code
                  1= product.label
                  2 = product.type
                  3 = product.status
               }
               text {
                  4 = text.languageid
                  5 = text.type
                  6 = text.content
                  7 = product.text.languageid
                 8 = product.text.type
                 9 = product.text.content
               }
              catalog {
                 10 = catalog.code
              }
            }
         }

Re: CSV Import

Posted: 05 Dec 2016, 14:12
by aimeos
If you want to use more text types, you have to add them in the admin interface first and than you can use the codes in your CSV file. Is that what you've meant?