Magento Import Object Type

I would like to import a CSV file into a user table from a local magento extension. For this, I would like to create a new "Entity Type" in the import / export module.

But it seems that this is not so simple, or at least I did not find a tutorial or documentation while searching the Internet for several hours.

It may not be necessary to create a new entity type, but I thought that would be a good starting point. Since I'm currently using magmi (sourceforge.net/projects/magmi/) to import products, I would also decide to import data into user tables with this.

Thanks in advance for every hint you received for me!

Yours faithfully!

+4
source share
1 answer

This can be done by customizing the user data stream profile. (System> Import / Export> Dataflow - Advanced Profiles)

The following is a fairly simple tutorial on examples, which explains both the necessary XML action file and a simple example of writing your own data stream adapter to process each line in a CSV file.

http://blog.baobaz.com/en/blog/customizing-magento-dataflow-import-of-custom-data

+1
source

Source: https://habr.com/ru/post/1488052/


All Articles