I import products via Magmi to Magento and would like to change the tax_class_id now for some stores / store views.
For that I would love to have an extra file that just contains the attributes for the store view.
For Example:
sku; store; tax_class_id
test; de_de,it,de_it; 6
As you can see, I would like to change the tax_class_id
for the storeview de_de, it, and de_it to 6.
But when I run this file it changes the default value of tax_class_id
to 6. That means that tax_class_id
for all stores is set to 6. Also a test like
sku; store; tax_class_id
test; de; 1
test; de_de,it,de_it; 6
does not work.
So I am not sure if I understand the documentation correctly: http://wiki.magmi.org/index.php?title=Magmi_Behaviour_-_store_column
Am I watching at the wrong thing? Can someone help?
Edit
Also when I set a default value and only update it for one store, the default value is the last one I updated (store is ignored)
sku; store; tax_class_id
test; admin; 1
test; de_de,it,de_it; 6
Anyone got an idea?